angularjs – Angular TypeError:无法在字符串”上创建属性

前端之家收集整理的这篇文章主要介绍了angularjs – Angular TypeError:无法在字符串”上创建属性前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
单击“添加”后尝试清除输入框,就像这个人在 this tutorial中所做的那样.
我使用这个简短的代码重新创建了错误,而没有使用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 = ""
}

似乎我可以添加1项,但在第二个我得到此错误

您没有以正确的方式清理联系人对象.在Add()函数中,更改:
$scope.contact = ""

至:

$scope.contact = {};

Forked Plunker

原文链接:https://www.f2er.com/angularjs/140959.html

猜你在找的Angularjs相关文章