0
我想用ajax刪除功能:角函數調用表裏面
angular_app.controller('contacts_controller', ['$scope', '$http', '$templateCache',
function ($scope, $http, $templateCache) {
$scope.delete(id) {
alert('del: '+id);
};
//....
}
]);
..和一個輔助功能
function deleteContact(id) {
angular.element(document.getElementById("contacts_controller")).scope().delete(id);
}
和角表調用刪除(我用laravel,所以{[{
和代替{{
和}}
)。
<tr ng-repeat="x in data">
<td>{[{ x.id }]}</td>
<td>{[{ x.name }]}</td>
<td>
<button onClick="deleteContact({[{ x.id }]})">Delete</a>
</td>
</tr>
如何投入工作刪除聯繫人。 onClick="deleteContact(3)"
效果很好。 謝謝