自学内容网 自学内容网

uniapp child.onFieldChange is not a function

uni-forms
在这里插入图片描述

// 所有子组件参与校验,使用 for 可以使用  awiat
for (let i in childrens) {
const child = childrens[i];
let name = realName(child.name);
if (typeof child.onFieldChange === 'function') {
const result = await child.onFieldChange(tempFormData[name]);
if (result) {
results.push(result);
// toast ,modal 只需要执行第一次就可以
if (this.errShowType === 'toast' || this.errShowType === 'modal') break;
}
} else {
console.warn(`Child ${i} does not have onFieldChange method.`);
}
}

原文地址:https://blog.csdn.net/qq_25430563/article/details/142345223

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!