请检查下面的jquery帖子功能。出于某种原因,它不会将数据发布到特定的URL。这段代码是否正确?
我在这里做错了什么?
$.post("/Administrator/ProductEditProcess", { id: _id, title: _title, CategoryId: _CategoryId, slug: _slug, description: _description, isGuest: _isGuest, isActive: _isActive, isExclusiveSold: _isExclusiveSold, isFeatured: _isFeatured }).done(function (data) {
console.log("trigred");
if (data == "ok") {
alert("Success");
location.reload();
}
});
答案 0 :(得分:-1)
考虑到您的控制台中没有错误/警告 - 可能没有太多原因它不起作用 - 例如,您的操作地址/Administrator/ProductEditProcess
要么不存在,要么其代码中有错误 - 请检查两次