我是AngularJs的新手,我的问题是,当我点击我追加它的按钮时,它不会调用该函数,或者该函数不起作用。
HTML
</tbody>
<tr>
<td><input type="text" class="form-control" ng-model="contact.name"/></td>
<td><input type="text" class="form-control" ng-model="contact.email"/></td>
<td><input type="text" class="form-control" ng-model="contact.number"/></td>
<td colspan="2">
<button class="btn btn-primary btn-block" ng-click="addContact()">Add Contact</button>
</td>
</tr>
<tr ng-repeat="contact in contactlist">
<td>{{contact.name}}</td>
<td>{{contact.email}}</td>
<td>{{contact.number}}</td>
<td><button class="btn btn-danger" ng-click="removeContact(contact._id)"><i class="glyphicon glyphicon-trash"></i></button></td>
<td><button class="btn btn-info" ng-click="editContact(contact._id)"><i class="glyphicon glyphicon-pencil"></i></button></td>
</tr>
</tbody>
角
$scope.editContact = function(id){
$http.get('/contactlist/' + id).success(function(response){
$scope.contact = response;
var addButton = angular.element('#custom_btn');
addButton.empty();
addButton.append('<button class="btn btn-success btn-block" ng-click="update()">Update Contact</buton>');
});
};
$scope.update = function(){
alert('test');
};
我的代码出了什么问题。我的想法是它与jQuery相同..其中jquery附加的所有元素在其函数调用中都会有body
..
提前感谢。
答案 0 :(得分:2)
首先请阅读discusstion。
您可以在html视图中使用ng-if
指令而不是JQuery:
<tr>
...
<td colspan="2" id="custom_btn">
<button class="btn btn-primary btn-block" ng-click="addContact()">Add Contact</button>
<button ng-if="isEdited" class="btn btn-success btn-block" ng-click="update()">Update Contact</buton>
</td>
</tr>
在editContact
函数中:
$http.get('/contactlist/' + id).success(function(response){
$scope.contact = response;
$scope.isEdited = true;
});
注意:如果您在视图中update()
使用$parent.update()
时出错。