.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>
有什么想法吗?