我有一个看起来像这样的数组:
$scope.quotes =
[
{
'quote': 'foo',
'author': 'bar',
'source': 'foobar',
'first': 'slideout',
},
{
...
},
]
我正在尝试首先删除键值:从数组中滑出。像这样:
delete $scope.quotes[0][first];
我也试过:
delete $scope.quotes[0].first;