如何在Angular中的数组中创建初始值并在文本框中显示该值?

时间:2015-06-29 06:46:50

标签: javascript angularjs

我正在创建一个带有追加新行功能的表单。我可以动态创建一个新行但我的问题是我无法在文本框中显示初始值。

以下是我的一些代码:

<div class="row" ng-app="product_list">
    <div class="table-responsive" ng-controller="productList">
        <table class="table table-bordered table-hovered">
            <thead>
                <tr>
                    <td class="text-left">Product Name</td>
                    <td class="text-left">Quantity</td>
                    <td class="text-left">Price</td>
                    <td class="text-left">Subtotal</td>
                    <td class="text-center"><button type="button" class="btn btn-default" ng-click="addNewRow()">Add Row</button></td>
                </tr>
            </thead>
            <tbody>
                <tr ng-repeat="value in product.item">
                    <td class="text-left">
                        <input type="text" ng-model="item.name" class="form-control" />
                    </td>
                    <td class="text-center">
                        <input type="number" ng-model="item.quantity" class="form-control" />
                    </td>
                    <td class="text-right">
                        <input type="number" ng-model="item.price" class="form-control text-right" value="{{ value.price }}" />
                    </td>
                    <td>{{ item.price * item.quantity | currency }}</td>
                    <td class="text-center">
                        <button type="button" class="btn btn-danger" ng-click="removeRow($index)">Remove</button>
                    </td>
                </td>
            </tbody>
            <tfoot>
                <tr>
                    <td colspan="3">
                    <td colspan="3" class="text-left">
                        <label>Subtotal: </label>
                        <input type="text" class="form-control text-right" value="{{ total() | currency }}" readonly />
                    </td>
                </tr>
            </tfoot>
        </table>
    </div>
</div>

JS:

<script type="text/javascript">

    var appList = angular.module('product_list', []);

    appList.controller('productList', function($scope){

        $scope.product = {
            item: [
            {
                product_name: 'Test name 1',
                quantity: 5,
                price: 99.9,
            }
            ]
        };

        $scope.addNewRow = function() {

            $scope.product.item.push({
                product_name: '',
                quantity: 1,
                price: 0
            });

        }

        $scope.removeRow = function(index) {
            $scope.product.item.splice(index, 1);
        }

        $scope.total = function() {

            var total = 0.00;

            angular.forEach($scope.product.item, function(item){
                total += item.quantity * item.price
            });

            return total;

        }

    });

</script>

这是plnkr:http://plnkr.co/edit/6vAVPw?p=preview

2 个答案:

答案 0 :(得分:2)

您的变量不匹配,在这里您使用value作为重复项目:

<tr ng-repeat="value in product.item">

但是您将该项目用作item,因此只需将value in product.item更改为item in product.item

<tr ng-repeat="value in product.item">

另请注意HTML第44行您的无效HTML,请将</td>更改为</tr>

要注意的最后一件小事是,您的项目变量的名称在对象中被称为product_name,但您将item.name分配给ng-model。因此,请将您的第一个文本域更新为ng-model=item.product_name

Updated Plunker

答案 1 :(得分:0)

这是因为你在ng-repeat和ng-model

中使用了不同的变量名
<tr ng-repeat="value in product.item">

由于您使用ng-model =&#34; .name&#34;,只需将替换为

像这样

<tr ng-repeat="item in product.item">