js的数组对象怎么阻止代码继续往下执行
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表单验证 但是提示在表格里面太丑了
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是这个意思吧