如果值是錯(cuò)誤的,會(huì)拋出一個(gè)異常(err)
在提交表單接口骤竹,定義一個(gè)空對(duì)象固蛾,不然會(huì)報(bào)錯(cuò)
// 驗(yàn)證重復(fù)內(nèi)容`
const typeError = {};
try {
//老內(nèi)容
tagOptions.map((item) => {
//新內(nèi)容
newTags.map((row) => {
if (row === item.text) {
throw typeError;
}
});
return;
});
} catch (err) {
message.error({
content: '請(qǐng)勿輸入重復(fù)標(biāo)簽',
});
return;
}