Closed terry-fei closed 10 years ago
朴大要是觉得这么设计可以的话我就进行下一步了 :)
var handle = function* (next) {
// 中间件
};
app.use(mout('/path', wechat(config).middleware(handle)));
不用根据消息类型调用响应的方法吗?
那个在handle里玩。
这个模块用到的都是 koa 相关的API,叫 co-wechat 可能不太合适。
可惜 koa-wechat 被我用了,哈哈…… https://github.com/ktmud/koa-wechat/blob/master/index.js
var app = require('koa')();
var wechat = require('../lib/wechat');
app.use(wechat('feit').middleware(function *() {
console.log(this.weixin.Content);
this.body = 'nodejs';
}));
app.listen(3000);
all test passing, i will write readme tomorrow, if no problem with this branch please merge it:)
+1