如何在angularJS中添加列表中的项目?

时间:2015-05-12 21:00:30

标签: javascript jquery html angularjs

snapshot

我希望点击“添加到购物车”按钮,项目将添加“我的购物车”。这是我的angularJS代码

app.controller("OnlineShopping", function($scope)
 { 
    $scope.items = [
        {Product:"Moto G2", Desc: "Android Phone", Price: 10999},
        {Product:"The Monk who sold his ferrari", Desc: "Motivational book", Price: 250},
        {Product:"Mi Power Bank", Desc: "Power Bank", Price: 999},
        {Product:"Dell Inspiron 3537", Desc: "Laptop", Price: 45600}
    ];
    $scope.editing = false;
    $scope.addItem = function(item) {
        $scope.items.push(item);
        $scope.item = {};
    };

我在使用ng-modelng-bing时发现了一些问题,但它适用于文本框,但在这里我没有从文本框中获取输入。这是我的“我的购物车”的不完整代码

    <h2>My Cart</h2>
        <div style="border: 1px solid blue;">
        </div>
        <table border="1" class="mytable">
        <tr>
        <td>Item</td>
           <td>Description</td>
           <td>Price</td>
        </tr>
        <tr ng-repeat="item in items">
                  <!-- What should be here -->
        </tr>
       </table>

2 个答案:

答案 0 :(得分:11)

您只需要使用添加单元格值。但在此之前当您点击“添加到购物车”按钮时,该项目需要添加到另一个变量$ scope.myCartItems

$scope.addToCart = function(item)
{
$scope.myCartItems.push(item);
}

模板将如下所示改变,

<h2>My Cart</h2>
        <div style="border: 1px solid blue;">
        </div>
        <table border="1" class="mytable">
        <tr>
        <td>Item</td>
           <td>Description</td>
           <td>Price</td>
        </tr>
        <tr ng-repeat="item in myCartItems">
             <td>{{item.Product}}</td>
<td>{{item.Desc}}</td>
<td>{{item.Price}}</td>
        </tr>
       </table>

看看这个plnkr。 http://plnkr.co/edit/zW7k8J9it1NIJE3hEwWI?p=preview

答案 1 :(得分:0)

看起来不错。

尝试删除该行

$scope.item = {};

并将其包裹在$ watch

周围
$scope.$watch('items', function(){
      console.log('items changed');
});