我试图从我的mongodb集合中删除一条记录" setlist"在MEAN堆栈应用程序中。
的index.html
<table class="table">
<thead>
<tr>
<th>Artist</th>
<th>Title</th>
<th>Key</th>
<th>Action</th>
<th> </th>
</tr>
</thead>
<tbody>
<tr ng-repeat="setTrack in setlist" ng-click="clicked">
<td><h4>{{setTrack.Artist}}</h4></td>
<td><h4>{{setTrack.Title}}</h4></td>
<td><h4>{{setTrack.Key}}</h4></td>
<td><button class="btn btn-success" ng-click="removeFromSL(setTrack._id)">Remove from set list</button></td>
</tr>
</tbody>
</table>
controller.js
var myApp = angular.module('myApp', []);
myApp.controller('AppCtrl', ['$scope', '$http', function($scope, $http) {
console.log("Hello World from controller");
var refresh = function() {
$http.get('/setlist').success(function(response) {
console.log("I got the data i requested");
$scope.setlist = response;
$scope.setTrack = "";
});
};
$scope.addToSL = function(id) {
$http.get('/tracks/' + id).success(function(response) {
console.log(response);
$http.post('/setlist', response).success(function(response) {
console.log(response);
refresh();
});
});
};
$scope.removeFromSL = function(id) {
console.log(id);
$http.delete('/setlist/' + id).success(function(response) {
refresh();
});
};}]);
server.js
var express = require('express');
var app = express();
var mongojs = require('mongojs');
var db = mongojs('tracks', ['tracks']);
var db1 = mongojs('setlist', ['setlist']);
var bodyParser = require('body-parser');
app.use(express.static(__dirname = '\public'));
app.use(bodyParser.json());
app.get('/setlist', function (req, res) {
console.log("I recieved a get request");
db1.setlist.find(function (err, docs) {
console.log(docs);
res.json(docs);
});
});
app.delete('/setlist/:id', function (req, res) {
var id = req.params.id;
console.log(id);
db1.setlist.remove({_id: mongojs.ObjectId(id)}, function(err, doc) {
res.json(doc);
});
});
app.listen(3000);
console.log("Server running on port 3000");
当我单击从设置列表中删除按钮时,控制器和服务器会激活正确的功能,因为记录ID会打印到控制台和服务器终端,但记录不会从集合中删除。
答案 0 :(得分:0)
这里有两个可能的问题。
首先,您的删除查询{_id: mongojs.ObjectId(id)}
很可能与数据库中的任何文档都不匹配。
其次,在删除阶段你有一些错误。
所以我建议关注。检查删除查询是否实际上要删除要删除的文档find({_id: mongojs.ObjectId(id)})
。如果找到文件,请尝试打印err
并查看您的文件。
文档https://docs.mongodb.com/manual/reference/method/db.collection.remove/
希望这有帮助。