每次提示说有敏感词...但不提示是哪个...刚看了下 石马 发现工具是有的嘛,就是没用上
private void checkSensitiveWords(String value, String msg) {
String word = SensitiveWordsKit.checkSensitiveWord(value);
if (word != null) {
addError("msg", msg.concat(word));//<<<给提示一下
}
}