请稍等 ...
×

采纳答案成功!

向帮助你的同学说点啥吧!感谢那些助人为乐的人

Hi Scott 老师, 我在学习 4-6 节的时候,出现这个错误

正在回答 回答被采纳积分+3

插入代码

5回答

Scott 2019-03-10 21:03:14

应该是这里


(config, reply)

这里 reply ,你看下引入这个文件的地方,是不是未对它传入这个外部的 reply 方法

0 回复 有任何疑惑可以回复我~
提问者 慕沐8424583 2019-03-09 21:28:11
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
const xml2js = require('xml2js')
const template = require('./tpl')
 
exports.parseXML = xml => {
return new Promise((resolve, reject) => {
xml2js.parseString(xml, {trim: true}, (err, content) => {
if (err) reject(err)
else  resolve(content)
})
})
}
const formatMessage = result => {
let message = {}
 
if (typeof result === 'object') {
const keys = Object.keys(result)
 
for (let i = 0; i < keys.length; i++) {
let item  = result[keys[i]]
let key = keys[i]
 
if (!(item instanceof Array) || item.length === 0 ) {
continue
}
 
if (item.length ===  1) {
let val = item[0]
 
if (typeof val === 'object') {
message[key] = formatMessage(val)
else {
message[key] = (val || '').trim()
}
else {
 
message[key] = []
 
for (let j = 0; j < item.length; j++) {
message[key].push(formatMessage(item[j]))
}
}
 
}
}
return message
}
 
const tpl = (content, message) => {
let type = 'text'
 
if (Array.isArray(content)) {
type = 'news'
}
 
if (!content) content = 'Empty News'
if (content && content.type) {
type = content.type
}
let info = Object.assign({}, {
content: content,
msgType: TypeError,
createTime: new Date().getTime(),
toUserName: message.FromUserName,
FromUserName: message.ToUserName
})
return template(info)
}
 
 
exports.formatMessage = formatMessage


0 回复 有任何疑惑可以回复我~
提问者 慕沐8424583 2019-03-09 21:26:32
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
const sha1 = require('sha1')
const getRawBody = require('raw-body')
const util = require('./util')
 
module.exports = (config, reply) => {
return async (ctx, next) => {
const { signature, timestamp, nonce, echostr } = ctx.query
const token = config.token
let str = [token, timestamp, nonce].sort().join('')
const sha = sha1(str)
 
if (ctx.method === 'GET') {
if (sha === signature) {
ctx.body = echostr
else {
ctx.body = 'Failed'
}
else if (ctx.method === 'POST') {
if (sha !== signature) {
return (ctx.body = 'Failed')
}
 
const data = await getRawBody(ctx.req, {
length: ctx.length,
limit: '1mb',
encoding: ctx.charset
})
 
console.log(data)
const content = await util.parseXML(data)
console.log('content')
console.log(content)
const message = util.formatMessage(content.xml)
console.log('message')
console.log(message)
 
ctx.weixin = message
 
await reply.apply(ctx, [ctx, next])
 
const replyBody = ctx.body
const msg = ctx.weixin
const xml = util.tpl(replyBody, msg)
 
console.log(xml)
ctx.status = 200
ctx.type = 'application/xml'
ctx.body = xml
}
}
}


0 回复 有任何疑惑可以回复我~
Scott 2019-03-09 19:15:11

可以把这个代码贴一下么,wechat-lib/middleware.js 这里的 39 行前后,看报错,是一个参数缺少定义导致的

0 回复 有任何疑惑可以回复我~
提问者 慕沐8424583 2019-03-09 15:04:44

TypeError: Cannot read property 'apply' of undefined
     at /root/imooc/wechat/course4/wechat-lib/middleware.js:39:19
     at processTicksAndRejections (internal/process/next_tick.js:81:5)

0 回复 有任何疑惑可以回复我~
问题已解决,确定采纳
还有疑问,暂不采纳
微信客服

购课补贴
联系客服咨询优惠详情

帮助反馈 APP下载

慕课网APP
您的移动学习伙伴

公众号

扫描二维码
关注慕课网微信公众号