2016-08-19 127 views
1

我想在我的页面中创建动态列表。用户可以从表单中添加项目到列表中。事情是这样的:如何通过输入表单将对象数组添加到html列表中?

w3school example

但我想增加输入和发送一个对象的角度功能。事情是这样的:

<!DOCTYPE html> 
<html> 
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script> 
<link rel="stylesheet" href="http://www.w3schools.com/lib/w3.css"> 
<body> 

<script> 
var app = angular.module("myShoppingList", []); 
app.controller("myCtrl", function($scope) { 
    $scope.products = [{food: "Milk", price: "1$"}, {food : "Bread", price: "1$"}, {food : "Cheese", price: "1$"}]; 
    $scope.addItem = function() { 
     $scope.errortext = ""; 
     if (!$scope.addMe) {return;} 
     if ($scope.products.indexOf($scope.addMe) == -1) { 
      $scope.products.push($scope.addMe); 
     } else { 
      $scope.errortext = "The item is already in your shopping list."; 
     } 
    } 
    $scope.removeItem = function (x) { 
     $scope.errortext = ""; 
     $scope.products.splice(x, 1); 
    } 
}); 
</script> 

<div ng-app="myShoppingList" ng-cloak ng-controller="myCtrl" class="w3-card-2 w3-margin" style="max-width:400px;"> 
    <header class="w3-container w3-light-grey w3-padding-16"> 
    <h3>My Shopping List</h3> 
    </header> 

    <ul class="w3-ul"> 
    <li ng-repeat="x in products" class="w3-padding-16">{{x.food}} : {{x.price}}<span ng-click="removeItem($index)" style="cursor:pointer;" class="w3-right w3-margin-right">×</span></li> 
    </ul> 

    <div class="w3-container w3-light-grey w3-padding-16"> 
    <div class="w3-row w3-margin-top"> 
     <div class="w3-col s10"> 
     <input placeholder="Add shopping items here" ng-model="addMe.food" class="w3-input w3-border w3-padding"> 
     <input placeholder="Add shopping items here" ng-model="addMe.price" class="w3-input w3-border w3-padding"> 
     </div> 
     <div class="w3-col s2"> 
     <button ng-click="addItem()" class="w3-btn w3-padding w3-green">Add</button> 
     </div> 
    </div> 
    <p class="w3-padding-left w3-text-red">{{errortext}}</p> 
    </div> 
</div> 

</body> 
</html> 

,但如果我增加了新的项目,以我的列表,然后我开始在文本框变化值也是如此在我的列表中更改值。有像指针这样的东西。如果我发送字符串数组,然后不这样做,但我不想连接到一个字符串。现在我已经连接到一个字符串,但我不想要它。

感谢您的所有答案。

+0

使用angular.copy()创建一个副本,然后将该复制的对象推送到数组 – Developer

+0

你能更清楚一点你想要什么吗?就像给出一个用户点击的例子 - 这意味着发生这种情况,等等 – Cullub

+0

如果你将在文本框输入并点击按钮的东西,然后列表将从文本框中增加新项目的文本。例如,我把这里链接起来。 –

回答

0

使用angular.copy()创建副本,然后将复制的对象推送到数组。

0

看一看ngModelOptions控制模型的更新方式: https://docs.angularjs.org/api/ng/directive/ngModelOptions

试试这个:

<input placeholder="Add shopping items here" 
ng-model="addMe.price" 
ng-model-options="{ updateOn: 'blur' }" 
class="w3-input w3-border w3-padding"> 

只需用什么JavaScript事件将触发更新浪费时间。

+0

谢谢你的时间。我尝试它,但现在不改变列表时,键入文本框,但当我按下按钮。我尝试看看https://docs.angularjs.org/api/ng/directive/ngModelOptions。 –

相关问题