ASP.NET MVC 是满足此类需求的完美框架。如果我处于你的位置,我会做的是使用 JQuery Ajax API。
以下博客文章应该会提示您可以使用 PartialViews、JQuery 和 Ajax 调用对服务器进行哪些操作:
http://www.tugberkugurlu.com/archive/working-with-jquery-ajax-api-on-asp-net-mvc-3-0-power-of-json-jquery-and-asp-net-mvc-部分视图
更新
它被要求做一个简短的介绍,所以就在这里。
以下代码是您的操作方法:
[HttpPost]
public ActionResult toogleIsDone(int itemId) {
//Getting the item according to itemId param
var model = _entities.ToDoTBs.FirstOrDefault(x => x.ToDoItemID == itemId);
//toggling the IsDone property
model.IsDone = !model.IsDone;
//Making the change on the db and saving
ObjectStateEntry osmEntry = _entities.ObjectStateManager.GetObjectStateEntry(model);
osmEntry.ChangeState(EntityState.Modified);
_entities.SaveChanges();
var updatedModel = _entities.ToDoTBs;
//returning the new template as json result
return Json(new { data = this.RenderPartialViewToString("_ToDoDBListPartial", updatedModel) });
}
RenderPartialViewToString 是控制器的扩展方法。您需要在这里使用 Nuget 来关闭一个名为
TugberkUg.MVC的非常小的包,该包将具有一个控制器扩展,以便我们将部分视图转换为控制器内的字符串。
然后这里是关于如何使用 JQuery 调用它的简要信息:
var itemId = element.attr("data-tododb-itemid");
var d = "itemId=" + itemId;
var actionURL = '@Url.Action("toogleIsDone", "ToDo")';
$("#ajax-progress-dialog").dialog("open");
$.ajax({
type: "POST",
url: actionURL,
data: d,
success: function (r) {
$("#to-do-db-list-container").html(r.data);
},
complete: function () {
$("#ajax-progress-dialog").dialog("close");
$(".isDone").bind("click", function (event) {
toggleIsDone(event, $(this));
});
},
error: function (req, status, error) {
//do what you need to do here if an error occurs
$("#ajax-progress-dialog").dialog("close");
}
});
需要采取一些额外的步骤。因此,请查看具有完整演练的博客文章。