1

当我将新产品添加到产品列表时,它不起作用。所以产品可以很好地加载,但ng-click函数没有被调用。(我在addProduct函数中输入的警报没有执行)。

HTML

<div ng-controller="ProductController as ProductCtrl">
Zoeken <input type="text" ng-model="search" placeholder="Search" />
<div>
    Filter Type
    <button ng-repeat="cat in categories" ng-click="filterProductsByCategory(cat)">{{cat}}</button>
</div>
<table cellpadding="5" cellspacing="0" border="1">
    <tr>
        <th>ID</th>
        <th>Product</th>
        <th>Type</th>
        <th>Price</th>
        <th>Toevoegen</th>
    </tr>
    <tr ng-repeat="product in ProductCtrl.products">
        <td>{{product.id}}</td>
        <td>{{product.name}}</td>
        <td>{{product.type}}</td>
        <td>{{product.price}}</td>
        <td></td>
    </tr>
    <tr><td></td>
        <td><input type="text" name="newProduct.name" ng-model="productCtrl.newProduct.name"></td>
        <td><input type="text" name="newProduct.price" ng-model="productCtrl.newProduct.price"></td>
        <td><input type="text" name="newProduct.type" ng-model="productCtrl.newProduct.type"></td>
        <td><a href ng-click="productCtrl.addProduct()">Product {{productCtrl.newProduct.name}} toevoegen</a></td></tr>
</table>

任何帮助将不胜感激。

控制器:

app.controller('ProductController', function(productService) {

    var that = this;

    productService.getProducts().success(function(data) {
        that.products = data;
    });

    this.newProduct = "";
    this.addProduct = function() {

        that.products.push(this.newProduct);
        window.alert(that.products);
        this.newProduct = "";

    };
});
4

1 回答 1

4

它是一个错字,您的控制器别名ProductCtrl不是productCtrl,此外,您需要更改您ng-model的 's 来纠正同样的事情

替换productCtrlProductCtrl将解决您的问题。

<tr>
  <td>
     <input type="text" name="newProduct.name" ng-model="ProductCtrl.newProduct.name"/>
  </td>
  <td>
    <input type="text" name="newProduct.price" ng-model="ProductCtrl.newProduct.price"/>
  </td>
  <td>
     <input type="text" name="newProduct.type" ng-model="ProductCtrl.newProduct.type"/>
  </td>
  <td>
    <a href ng-click="ProductCtrl.addProduct()">
       Product {{productCtrl.newProduct.name}} toevoegen
    </a>
  </td>
</tr>
于 2015-08-29T12:59:44.497 回答