-1

大家好,我不知道这是否可能,这就是为什么我需要建议来实现这一点的原因。问题是我想将 javacript 对象与 ajax-beginform 而不是模型对象发布到控制器。我像下面这样编码,但找不到发布数据的方法,我知道 jQuery ajax 是一种选择,但在这种情况下我不想使用 jQuery ajax 来发布数据。

HTML

@{
    ViewBag.Title = "Index";
    Layout = "~/Views/Shared/_Layout.cshtml";
}
@section scripts{
    <script type="text/javascript">

        var getValues=function()
        {
            //alert(1)
            var v = {
                id: $("#txtid").val(), name: $("#txtName").val()
            }
            console.log(v)
            return v;
        }

    </script>
    }

<h2>Index</h2>
@using (Ajax.BeginForm("postvalue", new AjaxOptions { HttpMethod="POST", OnBegin = "getValues" }))
{
    <input type="text" id="txtid" />
    <br />
    <input type="text" id="txtName" />
    <br />
    <button type="submit" value="Click" style="width:50px;height:50px">Click</button>
}

控制器

namespace AjaxBeginForm.Controllers
{
    public class AjaxBeginFormController : Controller
    {
        // GET: AjaxBeginForm
        public ActionResult Index()
        {
            return View();
        }

        public void postvalue(searchValues objsearchValues)
        {

        }
    }

    public class searchValues
    {
        public Int64 id { get; set; }
        public string name { get; set; }
    }
}

我想将数据发布到控制器并在objsearchValues中捕获它们。

4

1 回答 1

0

将 JS 值放在表单中的隐藏字段中,提交表单时会将值传递回控制器。

于 2017-02-17T17:25:07.353 回答