- 新建Node.js云函数 msgcheck ,粘贴以下代码 (创建并部署)
const cloud = require('wx-server-sdk')
cloud.init({})
// 云函数入口函数
exports.main = async (event, context) => {
const { content } = event;//可以省略
try {
const res = await cloud.openapi.security.msgSecCheck({
content: event.content
})
return res;
} catch (err) {
return err;
}
}
wx.cloud.callFunction({
name:'msgcheck',
data:{
content:"要检测的文本内容"
}
}).then(ckres=>{
//审核通过之后的操作 if == 0
if (ckres.result.errCode == 0){
console.log("审核通过触发")
}else{
wx.showModal({
title: '提醒',
content: '请勿输入敏感词汇',
showCancel:false
})
}
})