0

AJAX 呼び出しがあります

$.ajax({
    type: 'post',
    url: "/Store/LoadStoreIndex",
    data: , //Entire Model Here!!
    dataType: "text",
    success: function (result) {
        $('#Postback').html(result);
    }
});

モデル全体をコントローラーに送り返す必要がありますが、多くの検索を行っても何も見つかりません...何をする必要があるか教えてもらえますか?

4

1 に答える 1

3

コントローラ取得アクション

public ActionResult Index(YourModel model)
{
    YourModel model = new YourModel();

    return View(model);
}

意見

@model YourModel
@using (Html.BeginForm("Index", "Home", FormMethod.Post, new { id = "form1" }))
{
    @Html.TextBoxFor(x => x.EmailAddress)
    @Html.TextBoxFor(x => x.Name)
    ...
}

脚本

$(function () {
    $('form').submit(function () {
        if ($(this).valid()) {
            $.ajax({
                url: this.action,
                type: this.method,
                // you can post your model with this line
                data: $(this).serialize(),  
                beforeSend: function () {

                },
                complete: function () {

                },
                success: function (result) {

                },
                error: function () {

                }
            });
        }
        return false;
    });
});

コントローラ ポスト アクション

[HttpPost]
public ActionResult Index(YourModel model)
{
    return View();
}
于 2013-02-07T20:16:52.993 に答える