angularJS .push插入空行

时间:2016-12-20 22:59:19

标签: angularjs

.push函数中的success不起作用:它在列表中添加一个空行。

JS:

$scope.ajouterIngredient = function(){
        if (!$scope.nomi || $scope.nomi ==='') { return; }
        recettes.addingredient(recette._id,{
            nomi: $scope.nomi,
            nombre: $scope.nombre
            }).success(function(ingredient){
                $scope.recette.ingredients.push(ingredient);
        });

HTML:

<tr ng-repeat="ingredient in recette.ingredients | orderBy:'-nombre'">
          <td> {{ingredient.nombre}}</td>
          <td> {{ingredient.nomi}}</td>
          </tr>

有什么想法吗?

0 个答案:

没有答案