新闻资讯

新闻资讯 行业动态

!!【福利】!!:”微信小程序:文本内容敏感字符检测

编辑:011     时间:2020-04-17

当微信小程序中涉及文本框输入内容时,我们需要对文本框中的内容进行敏感字符检测,虽然不检测也行,但是这样子很容易审核不通过。所以调用微信的API来做敏感字符的检测是一个不错的选择。

只需要准备两个ID即可上手操作:


示例代码如下:

wx.request({
    url: 'https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=小程序ID&secret=小程序密钥',
    method: 'GET',
    success: res => { var access_token = res.data.access_token;
        wx.request({
            method: 'POST',
            url: `https://api.weixin.qq.com/wxa/msg_sec_check?access_token=${access_token}`, data: {
                content: this.data.content
            },
            success(res) { if (res.data.errcode !== 87014) { // 合格, ……
                }
            }
        })
    },
    fail() {
        console.log(res);
    }
})


郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。

回复列表

相关推荐