Re: [問題] anglural 新手問題...

作者: hope0330 (MMMM)   2016-05-29 02:34:09
不好意思第一次發文,所以再重新發一次!
我想問的問題是,我想刪掉列表出來的項目,
畫面可以刪除,但是後端接收不到。
HTML部分:
<body>
<div ng-controller="firstCtrl">
書名:<input type="text" ng-model="name" placeholder="輸入書名">
作者:<input type="text" ng-model="author" placeholder="輸入作者">
<button type="button" ng-click="add()">新增</button>
<button type="button" ng-click="showList()">列出</button>
<table class="table table-striped" >
<tr colspan="5">
<td></td>
<td>ID</td>
<td>書名</td>
<td>作者</td>
<td></td>
</tr>
<tr ng-repeat="data in list">
<td><a href="" ng-click="remove($index)">X</a></td>
<td>{{data.id}}</td>
<td><span ng-hide="isShow"></span>
<span>
<input ng-show="isShow" type="text" ng-model="nameEdit" >
</span>
</td>
<td>{{data.author}}</td>
<td>
<button type="button" ng-click="editShow(data)">
<span ng-hide="isShow">修改</span>
<span ng-show="isShow">確認</span>
</button>
<button type="button">取消</button>
</td>
</tr>
</table>
<button ng-hide="clear" type="button" ng-click="rset()">全部清除</button>
</div>
JS部分:
$scope.list = []
$scope.clear = true;
$scope.showList = function() {
$http({
url: 'http://localhost:2000/book',
method: 'GET',
}).then(function(success_response) {
console.log(success_response);
$scope.list = success_response.data;
}, function(err_response) {
console.log(err_response);
})
if ($scope.clear = true) {
$scope.clear = false;
}
}
//刪除
$scope.remove = function(idx) {
$scope.list.splice(idx, 1)
var id = $scope.list.id;
$http.delete('http://localhost:2000/book/', { id: id }).then(function(res) {
$scope.showList(res);
console.log(idx);
})
}
作者: No (you stay there)   2016-05-29 02:40:00
var id = $scope.list.id; 看起來怪怪的是想寫 var id = $scope.list.splice(idx, 1)[0].id; 嗎?
作者: aaa7513231 (渾沌與秩序)   2016-05-29 09:30:00
log(id)看你有沒有正確傳給後端,然後測試資料給後端看能不能刪除,就知道是前端試資料給後端看能不能刪除,就知道是前端有問題題還是後端有問題
作者: hope0330 (MMMM)   2016-05-29 15:49:00
console 出來是正確的選到要刪除的ID,但是變成畫面畫面不會改變刪掉的還是在上面但沒有錯誤
作者: ccvs (kisS x Sis)   2016-05-30 01:25:00
你文章裡面說畫面可以正常刪除 可是推文又說是畫面無法刪除都幾?
作者: conanist (QQ)   2016-06-07 17:54:00
你先把後端MARK,然後你畫面上可以正常刪除資料嗎?然後$http.delete 這行真的有去刪後端的資料嗎試完在回來PO一下結果

Links booklink

Contact Us: admin [ a t ] ucptt.com