AngularJS在数组输入

时间:2017-12-30 07:12:19

标签: php angularjs

我是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索引而不是特定索引开始。

谢谢!

0 个答案:

没有答案