我有一个数组,我想在每个索引处再添加一个键值对。
var ajaxResult = ajaxGet("URL");
if (ajaxResult.length > 0) {
for (var i = 0; i < ajaxResult.length; i++) {
debugger
ajaxResult[i].prototype.push.apply({ "selectedTripLeader": $scope.TripLeaderData[0].Id });
debugger
}
}
我试图在存在于ajaxResult中的每个数组项上实现* selectedTripLeader。*例如array [0] .push({“ selectedTripLeader”:$ scope.TripLeaderData [0] .Id})array [1] .push({ “:$ scope.TripLeaderData [0] .Id})
我曾尝试使用普通的push和prototype.push,但无法正常工作。使用for循环或每个循环的解决方案都可以
慕工程0101907
相关分类