单击"添加"后尝试清除输入框,就像 本教程中的人员一样.
我使用这个简短的代码重新创建了错误,而没有使用API.
您还可以查看Plunker.
HTML
JS
$scope.contactList = [ {name: 'cris'}, {name: 'vlad'} ;] $scope.Add = function() { $scope.contactList.push($scope.contact) $scope.contact = "" }
似乎我可以添加1项,但在第二个我得到此错误:
你没有contact
以正确的方式清理你的物体.在该Add()
功能中,更改:
$scope.contact = ""
至:
$scope.contact = {};