Giter Club home page Giter Club logo

Comments (2)

gongzili456 avatar gongzili456 commented on July 1, 2024

同样没有找到问题所在! 请解答.

from weixin-robot.

gongzili456 avatar gongzili456 commented on July 1, 2024

已解决:
https://github.com/node-webot/webot 这个项目中, 为了解决没有匹配规则而添加的默认返回消息.
可以将本项目(weixin-robot) 的源文件拷贝到自己的项目中, 在下面这个代码位置修改即可:

Webot.prototype.middleware = function() {
  var self = this
  return function(req, res, next) {
    var info = Info(req.body)

    info.req = req
    info.res = res
    info.session = req.session

    self.reply(info, function(err, info) {

      // 添加一下规则
      // 屏蔽 webot 的不能为空的消息
      if (info.err) {
        info.reply = ''
      }
      res.body = self.formatReply(info)
      next()
    })
  }
}

from weixin-robot.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.