我有以下代碼;
$.ajax({
url: "/Home/jQueryAddComment",
type: "POST",
dataType: "json",
data: json,
contentType: 'application/json; charset=utf-8',
success: function(data){
//var message = data.Message;
alert(data);
$('.CommentSection').html(data);
}
而在我的控制器;
[ValidateInput(false)]
public ActionResult jQueryAddComment(Comment comment)
{
CommentSection commentSection = new CommentSection();
//ya da - ya da
// fill the commentsection object with data
//then
return PartialView("CommentSection", commentSection);
}
但是,當我回到頁面時,成功警報不會發生。任何人都可以看到這個邏輯中的缺陷嗎?
當前對帖子的回覆是什麼?用Firebug和/或Fiddler檢查響應。 – jfar 2010-08-16 01:58:29
好點@jfar – griegs 2010-08-16 02:01:16