1234567891011121314151617181920212223 |
- const bodyParser = require('koa-bodyparser')
- /**
- * 这里做一个兼容
- * 由于微信方面客服接口 post 过来的数据是 JSON
- * 但是 header 里的 Content-Type 却错误标记为 text/xml
- * 这里对所有 Content-Type 为 text/xml 的用 JSON 解析
- * 如果你在消息推送后台配置的是 xml,请直接将 detectJSON 设置为空
- */
- module.exports = (opts = {}) => {
- const options = Object.assign({}, {
- detectJSON (ctx) {
- if (ctx.request.type === 'text/xml') {
- return true
- } else {
- return false
- }
- }
- }, opts)
- return bodyParser(options)
- }
|