内容审查接口均返回ok?请大神指导
云函数:
// 云函数入口函数 exports.main = async(event, context) => { try { const res = await cloud.openapi.security.msgSecCheck({ content: event.content }) return res; } catch (err) { return err; } } |
小程序调用:
wx.cloud.init({}) wx.cloud.callFunction({ name: "msgseccheck" , data: { content } }).then( msgRes => { console.log(msgRes) if (msgRes.result.errorCode == "87014" ) { wx.showToast({ title: '文字含有违法违规内容' , icon: 'none' , duration: 1000, }) setTimeout( function () { wx.navigateBack() }, 1000) return } else { //内容正常 } } ) |