单击“添加”后尝试清除输入框,就像这个人在
this tutorial中所做的那样.
我使用这个简短的代码重新创建了错误,而没有使用API.
您还可以查看 Plunker.
原文链接:https://www.f2er.com/angularjs/140959.html我使用这个简短的代码重新创建了错误,而没有使用API.
您还可以查看 Plunker.
HTML
<input ng-model="contact.name" type="text"> <button ng-click="Add()">Add</button> <ul ng-repeat="contact in contactList"> <li>{{ contact.name }}</li> </ul>
JS
$scope.contactList = [ {name: 'cris'},{name: 'vlad'} ;] $scope.Add = function() { $scope.contactList.push($scope.contact) $scope.contact = "" }