作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 AngularJS 中有一个像这样的对象数组:
var example = [ {id:'1',
read: false,
folder: 'inbox'},
{id:'2',
read: true,
folder: 'inbox'},
{id:'3',
read: true,
folder: 'trash'},
{id:'4',
read: false,
folder: 'trash'}];
我需要删除具有属性 folder == 'trash'
和 read == true
同时 的任何对象.
所以我尝试用lodash这样做:
example = lodash.filter(example, function(value, index) {
return (value.folder !== 'trash') && (value.read !== true);
});
它应该只删除项目#3,但它会删除#3和#4。
显然我不明白 lodash.filter 的真正工作原理。
有人可以帮忙吗?
最佳答案
您的逻辑运算符不正确。将条件设置为 folder == 'trash'
和 read == true
并将其取反。
example = lodash.filter(example, function(value) {
return (value.folder == 'trash' && value.read == true) == false;
});
关于javascript - 如何在AngularJS中通过两个属性删除元素和数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32189340/
我是一名优秀的程序员,十分优秀!