We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
作者你好,最近遇到一个问题:和egg一起使用在处理不同的消息时调用不同的service?
module.exports = app => { class HomeController extends app.Controller {} // 因为 Egg 需要用类的形式来组织,而 wechat 是通过 middleware 方法来生成中间件 HomeController.prototype.wechat = wechat({ token: 'token', appid: 'appid', encodingAESKey: '' }).middleware(async (message, ctx) => { // 此处能否调用不同的service? }); return HomeController; };
The text was updated successfully, but these errors were encountered:
app.service.name.method();
Sorry, something went wrong.
@JacksonTian @jiangchenguang 你能在egg.js上使用co-wechat吗?为什么我按照example的做法做无法使用,微信公众号返回 服务出现故障,请稍后再试
No branches or pull requests
作者你好,最近遇到一个问题:和egg一起使用在处理不同的消息时调用不同的service?
The text was updated successfully, but these errors were encountered: