Cannot read property 'warn' of undefined——网易云信 第三方调用扩展字段的坑

it2022-05-05  133

网易云信,添加扩展字段,发送第三方 回调接收, 前端测试demo报错

显示:Cannot read property 'warn' of undefined

Cannot read property 'warn' of undefined

解决:

nim.sendText({ scene: obj.scene, to: obj.to, text: obj.text, done: onSendMsgDone, needMsgReceipt: obj.needMsgReceipt || false, custom: JSON.stringify(obj.custom) })

发送的 custom 或者 content 属性 JSON字段必须要转换成JSON字符串发送:

obj.custom改为 JSON.stringify(obj.custom)

 

自己琢磨了许久,百度了很多都搜索不到关键词,故 自己写了一篇文章,希望可以帮助到遇到跟我一样问题的同学。


最新回复(0)