使用微信小程序的敏感词过滤机制
- 市面上敏感词过滤的库都有限制,包括微信小程序的也有一定限制,本库只能在一定程度上弱化限制,无法完全避免失败的情况。
安装
npm i -S wx-sensitive-words
使用
const WX = require("wx-sensitive-words");
const sensitiveWords = new WX("appid", "secret");
sensitiveWords.getOpenid("小程序code");
sensitiveWords.sensitiveWords("敏感词", "openid").then(({ bool, message }) => {
if (bool) {
} else {
}
});
const filePath = `./static/fileName.png`;
const result = await wx.getWxacodeunlimit("pages/code/code", "scene", {
check_path: false,
width: 280,
});
fs.writeFileSync(filePath, result);