我是网络开发的新手,这是我目前正在处理的应用程序:http://jamesfoodadventures.herokuapp.com/ 它也在Github上:https://github.com/youknowjamest/foodapp
这就是事情,我已经整合了AJAX来处理删除用户发表的评论,但是上述AJAX请求的成功函数(从DOM中删除评论)并没有被调用。这对我来说一直很头疼,我很感激能得到的任何帮助。
答案 0 :(得分:0)
您在定义ajax
来电成功方法
你做了什么
$.ajax({
url: actionUrl,
type: 'DELETE',
itemToDelete: $itemToDelete,
success: function success(data) { //remove the name after function
console.log("WERWER")
this.itemToDelete.remove();
}
);
应该是什么
$.ajax({
url: actionUrl,
type: 'DELETE',
data :{comment :$itemtodelete}
success: function(data) { // remove the success name
console.log("WERWER")
this.itemToDelete.remove();
}
});