问题描述
我的问题看起来很熟悉其他问题,但事实并非如此!
请看一下以了解地雷状况。
我有一个看起来像这样的对象数组
$scope.events =[
{
$$hashKey: "009"
_allDay:false
_id:5
allDay:false
className:[]
end:Date {Fri Aug 08 2015 12:30:00 GMT+0530 (IST)}
start:Date {Fri Aug 08 2015 12:30:00 GMT+0530 (IST)}
title:"Birthday Party"
},
{
$$hashKey:"006"
_id:2
end:Date {Wed Aug 05 2015 00:00:00 GMT+0530 (IST)}
start:Date {Sun Aug 02 2015 00:00:00 GMT+0530 (IST)}
title:"Long Event"
},
{
$$hashKey:"007"
_id:3
allDay:false
id:999
start:Date {Fri Aug 07 2015 13:00:00 GMT+0530 (IST)}
title:"Angular Event"
},
{
$$hashKey:"008"
_id:4
allDay:false
id:999
start:Date {Tue Aug 11 2015 16:00:00 GMT+0530 (IST)}
title:"Repeating Event"
},
{
$$hashKey:"00A"
_id:6
end:Date {Sat Aug 29 2015 00:00:00 GMT+0530 (IST)}
start:Date {Fri Aug 28 2015 00:00:00 GMT+0530 (IST)}
title:"Click for Google"
}
]
现在我必须从这些数组中删除一个对象,看起来像这样
var selectedObj = {
$$hashKey:"009"
_allDay:false
_id:5
allDay:false
className:[]
end:Date {Fri Aug 07 2015 12:30:00 GMT+0530 (IST)}
start:Date {Fri Aug 07 2015 12:00:00 GMT+0530 (IST)}
title:"Birthday Party"
}
我在做什么
removedArray = _.reject($scope.events, function(event) {
return event.$$hashKey == selectedObj.$$hashKey
});
$scope.events = removedArray;
$scope.events
没有更新我尝试了$apply
但没有成功。
有人可以帮我找出我在做什么错。
最佳做法是什么。 这种脏东西。
1楼
lintmouse
3
2015-08-07 12:47:23
这应该可以使用相当标准的JavaScript(IE9 +)到达那里:
var index = myArray.map(function(e) { return e.$$hashKey; }).indexOf(selectedObj.$$hashKey);
if(index != -1) {
myArray.splice(index, 1);
使用underscore.js,您可以执行以下操作:
myArray = _(myArray).filter(function(obj) {
return obj.$$hashKey!== selectedObj.$$hashKey;
});
2楼
Robin Vinzenz
1
2015-08-07 13:25:00
您可能要使用函数,它与尘鼠的回答基本上相同,但是在我看来,代码更易读。
var selectedObj = {...}
$scope.events = [0,1,...,n];
$scope.events = _.remove($scope.events, function(element) {
return element == selectedObj;
});
3楼
Shaishab Roy
0
2016-03-03 06:59:30
所选事件可以通过此过程删除。 调用函数deleteEvent。
$scope.deleteEvent= function() {
var index = $scope.events.indexOf(selectedObj);
$scope.events.splice(index, 1);
};