weixin.js中的this.weixin未定义?
来源:
BlindLee
2016-04-13
yield handler.call(this,next)也没落下啊
写回答
3回答
-
哦,你拼写错误了,害我眯着眼睛找了好久好久....
this.weixin = message
你写成了
this.wexin = message
022016-04-13 -
Scott
2016-07-25
handler 在 app.js 里面没有传进来吧,在 app use 这个中间件的时候,需要把 reply.reply 作为 handler 传进来
00 -
Scott
2016-04-13
把
yield handler.call(this, next)
改成
yield* handler.call(this, next)
试下呢
022016-07-25
相似问题