字體端代碼(HTML,JavaScript)的我想要刪除按鈕,但我不能使用Ajax如何使用Ajax發送對象ID到後端(node.js的)
var retName = $(this).data("row-id");
$.ajax({
type: "POST",
url: "/delete",
data:
{'id' : ObjectId(retName)}
,
success: function() {
},
error: function(textstatus, errorThrown) {
alert('text status' + textstatus + ', err ' + errorThrown);
}
});
後臺發送對象ID代碼(Node.js的)
app.post('/delete', function(require, response) {
db.open(function(error, db) {
db.collection('infodb', function(error, collection) {
var doc = require.body;
console.log(ObjectId(doc))
collection.remove(doc, function() {
db.close();
});
});
});
});
非常感謝你
謝謝你的回答,但我已經解決了這個問題。 – Chatethakhun
Btw。我很確定它是'function(request,response){}'''function(require,response){}' –