我是AngularJS的新手
我无法设置动态键值。
这是我的代码,
查看
<td>
<input type="number" class="form-control" ng-model="title[id]" />
</td>
控制器
$scope.update = function() {
$http({
url: 'update.php',
method: "POST",
data: $scope.title
}).success(function (data) {});
}
PHP
[amount] => Array
(
[0] =>
[1] =>
[2] =>
[3] =>
[4] =>
[5] =>
[6] =>
[7] =>
[8] =>
[9] => 10
[10] =>
[11] =>
[12] => 12
)
所以,我的问题是,如果我使用id
作为输入数组键,那么始终数组以0
索引而不是特定索引开始。
谢谢!