2

大家好 目前我有一个网站,有一个按钮和一些创建加载外观的 javascript,然后运行这个 actionresult。我想向 actionresult 添加参数,但不知道该怎么做。谢谢!这是我的代码控制器:

    [HttpPost]
    public ActionResult PostMethod(string MyText)
    {
        System.Threading.Thread.Sleep(5000);

        return Json("And were done");
    }

看法:

<input type="text"  name="MyTextBlock"/>
<p id="PID">
Default message from declarative syntax.
</p>
<div id="divLoading" style="margin: 0px; padding: 0px; position: fixed; right: 0px;
top: 0px; width: 100%; height: 100%; background-color: #666666; z-index: 30001;
opacity: .8; filter: alpha(opacity=70);display:none" >
<p style="position: absolute; top: 30%; left: 45%; color: White;" align="center">
    <img src="../../Content/themes/base/images/ajax-loading.gif"><br />
    Loading, please wait...
</p>
</div>

<button onclick="JavascriptFunction();">HTTPPost Button</button>

<script type="text/javascript" language="javascript">
function JavascriptFunction() {
    var url = '@Url.Action("PostMethod", "MyTextBlock", new { MyText = "john" })';
    $("#divLoading").show();
    $.post(url, null,
            function (data) {
                $("#PID")[0].innerHTML = data;
                $("#divLoading").hide();
            });
}
</script>

我想要做的是将 MyTextBox 传递给 PostMethod 以将其用作 MyText。我在希望它来自文本框的值中看到硬编码的其他一些示例。任何帮助是极大的赞赏。谢谢!

4

2 回答 2

3

Razor 是在页面加载之前生成的,所以如果你想在页面加载后有一个文本框,你需要使用 javascript(也就是说,如果最终用户将更改值MyTextBox并且你想使用 AJAX 传递这个新值) .

null而不是作为您的数据参数传递$.post,这是您将获取的值MyTextBox并将其传递给操作的地方。例如:

var url = '@Url.Action("PostMethod")';
var data = $('input[name="MyTextBox"]').serialize();
$.post(url, data, function(data){

});
于 2012-09-18T13:14:58.700 回答
2

似乎您正在尝试编写很多 MVC 已经为您处理的代码。试试这个...

首先,为您的视图创建一个模型。你可以随意调用它。将您想要作为参数的属性放在您的操作方法中。

你的模型.cs

public class YourModel
{
    public string MyText { get;set; }
}

对于您的控制器,您必须更改两件事。页面的 GET 操作需要传递给它的模型,如下所示。

对于 POST 操作,将您的string MyText参数更改为YourModel model. 这将允许 MVC 将视图上的输入绑定到模型。

动作方法

public class YourController
{
    [HttpGet]
    public ActionResult PostMethod()
    {
        YourModel model = new YourModel();
        return View(model);
    }

    [HttpPost]
    public ActionResult PostMethod(YourModel model)
    {
        //Do something with model.MyText;
        System.Threading.Thread.Sleep(5000);
        return Json("And We're Done");
    }
}

PostMethod.cshtml

//THIS LINE HERE IS THE MOST IMPORTANT
@model YourNamespace.YourModel
//Ajax will handle most of the calling and showing of your elements if you tell it what to do!
@using(Ajax.BeginForm(new AjaxOptions(){ LoadingElementId="divloading", OnSuccess="OnSuccessFunction" }))
{
    <input type="text"  name="MyText"/>
    //Quick note: If you decide to hand code your html, make sure your <input/> name attributes match the property names on your model object.
    //Or here you could do @Html.TextBoxFor(m => m.MyText)
    <p id="PID">
    Default message from declarative syntax.
    </p>
    <div id="divLoading" style="margin: 0px; padding: 0px; position: fixed; right: 0px;
    top: 0px; width: 100%; height: 100%; background-color: #666666; z-index: 30001;
    opacity: .8; filter: alpha(opacity=70);display:none" >
    <p style="position: absolute; top: 30%; left: 45%; color: White;" align="center">
        <img src="../../Content/themes/base/images/ajax-loading.gif"><br />
        Loading, please wait...
    </p>
    </div>

    <input type="submit" name="Submit" value="HTTPPost Button"/>

    <script type="text/javascript" language="javascript">
    function OnSuccessFunction(data, textStatus, jqXHR){
         $("#PID")[0].innerHtml = data;
     }
    </script>
}

这样做的一些好处是,如果您向模型添加更多属性,现在您的 JS 不必更改。您只需使用 HtmlHelper 将另一个输入添加到您的视图中,或者使用与模型上的属性名称相同的 name 属性手动编码输入名称。MVC 将处理其余部分。

于 2012-09-18T13:31:57.847 回答