调试支付宝异步支付回调接口用bodyparser解析不出来请求中的body内容
发布于 15小时前 作者 code4funlnyx 56 次浏览 来自 问答

在做支付宝支付调试的时候发现,同步的接口可以正常更新数据,但是调试异步通知接口的时候发现req.body是空得,输出req.headers如下: { 'content-type’: 'application/x-www-form-urlencoded; text/html; charset=UTF-8’, 'user-agent’: 'Mozilla/4.0’, host: '*****’, 'content-length’: ‘823’ }

发现 content-type诡异的既有application/x-www-form-urlencoded,又有text/html,然后用req.body取不到body中内容,输出为{},请问有没有遇到过的大大

回到顶部