asp.net-mvc – 使用jQuery ASP.NET MVC自动保存表单输入

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – 使用jQuery ASP.NET MVC自动保存表单输入前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我们希望实现一个自动保存内容的网络表单.类似于gmail / google docs的东西自动保存功能.

有人可以建议如何使用ASP.NET MVC jQuery实现这一点吗?

解决方法

jQuery Forms plugin和ASP.NET MVC操作应该完成这项工作:
public ActionResult SaveDraft(FormCollection form)
{
    // TODO: Save the form values and return a JSON result 
    // to indicate if the save went succesfully
    return Json(new { success = true });
}

在您的视图中,只需定期调用此操作:

setInterval(function() {
    $('#theFormToSave').ajaxSubmit({ 
        url    : 'SaveDraft',success: function (data,textStatus) {
            if (data.success) {
                alert('form successfully saved');
            }
        }
    });
},30000);
原文链接:https://www.f2er.com/aspnet/247110.html

猜你在找的asp.Net相关文章