wechat.reply.call(this) 中的call 是underfined
来源:4-2 第四天 封装消息响应模块
qq_XiabulaKa_0
2016-12-30
app.use(wechat(config.wechat,weixin.reply));
module.exports=function(opts,handler){
var wechat=new Wechat(opts);
....
this.weixin=message;
yield handler.call(this,next);
wechat.reply.call(this);
}
}
}
写回答
2回答
-
看看 wechat.js 里面实现的 reply 对不对
Wechat.prototype.reply = function() { var content = this.body var message = this.weixin var xml = util.tpl(content, message) this.status = 200 this.type = 'application/xml' this.body = xml }
052017-07-24 -
qq_XiabulaKa_0
提问者
2017-01-03
解决了,真是郁闷了。。。模板出错。。
012017-07-24
相似问题