js的数组对象怎么阻止代码继续往下执行

发布于 2022-09-12 13:01:18 字数 940 浏览 19 评论 0

let tableDataAdd = [];

this.tableDataAdd.push({
    materialName: '',
    materialNum: '',
    specification: '',
    brandName: '',
    categoryName: '',
    unit: '',
  }, {
    materialName: '',
    materialNum: '',
    specification: '',
    brandName: '',
    categoryName: '',
    unit: '',
  }, {
    materialName: '',
    materialNum: '',
    specification: '',
    brandName: '',
    categoryName: '',
    unit: '',
  }, {
    materialName: '',
    materialNum: '',
    specification: '',
    brandName: '',
    categoryName: '',
    unit: '',
  }, {
    materialName: '',
    materialNum: '',
    specification: '',
    brandName: '',
    categoryName: '',
    unit: '',
  })

我想在保存列表的接口之前做一个验证,只要tableDataAdd里面的materialNum为0或者''阻断代码继续往下执行,不让调取接口该怎么处理,我用了map,some的 return false和break都不行

如下图,本来打算用async-validator表单验证 但是提示在表格里面太丑了

image.png

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

迷途知返 2022-09-19 13:01:18

是这个意思吧

const len = this.tableDataAdd.filter(item=>item.materialNum===0).length;
if(len>0) {
    return;
}
request()……
吹梦到西洲 2022-09-19 13:01:18
submit(){
   if(this.tableDataAdd.some(item => !item.materialNum)) return 
   //请求接口...
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文