admin管理员组文章数量:1340286
I'm using Vue.js with JavaScript.
I have an array of objects called products
and every object has the property
called smallest_unit_barcode
. I want to filter only products with barcode like value
, so I did this function:
if (value != '') {
var results = this.products.filter(obj=>obj.smallest_unit_barcode.includes(value));
var results = results.slice(Math.max(results.length - 20, 0))
this.pos_quick_lunch = results;
}
Everything works fine, but if obj.smallest_unit_barcode == null
, I get this error:
Error in v-on handler: "TypeError: Cannot read property 'includes' of null"
How can I ignore the null
value when filtering the products array?
I'm using Vue.js with JavaScript.
I have an array of objects called products
and every object has the property
called smallest_unit_barcode
. I want to filter only products with barcode like value
, so I did this function:
if (value != '') {
var results = this.products.filter(obj=>obj.smallest_unit_barcode.includes(value));
var results = results.slice(Math.max(results.length - 20, 0))
this.pos_quick_lunch = results;
}
Everything works fine, but if obj.smallest_unit_barcode == null
, I get this error:
Error in v-on handler: "TypeError: Cannot read property 'includes' of null"
How can I ignore the null
value when filtering the products array?
-
if ( obj.smallest_unit_barcode === null) ... else ...
– Andreas Commented Jul 3, 2020 at 11:11
2 Answers
Reset to default 11Compare against null
before you try to access the property:
obj => obj.smallest_unit_barcode !== null && obj.smallest_unit_barcode.includes(value)
Because &&
is short circuiting, the right operand won't be evaluated if the left operand evaluates to false.
Simple answer is, You can use ? with includes
if (value != '') {
var results = this.products.filter(obj=>obj?.smallest_unit_barcode?.includes(value));
var results = results.slice(Math.max(results.length - 20, 0))
this.pos_quick_lunch = results;
}
本文标签: javascriptCannot read property 39includes39 of nullquotStack Overflow
版权声明:本文标题:javascript - Cannot read property 'includes' of null" - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743631483a2513184.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论