gpt4 book ai didi

javascript - 发布到 MVC4 中的 Controller

转载 作者:行者123 更新时间:2023-12-03 11:38:18 25 4
gpt4 key购买 nike

我在这里问了几个问题,但没有任何可行的答案。我可能走错了路或者问错了。基本上,我想做的是在页面中加载 VAR:

 var testModel = @Html.Raw(JSON.Encode(Model))

然后使用 jQuery 和 JavaScript 操作反射(reflect)原始模型的 testModel 属性,然后使用 AJAX 请求将其发布回 Controller 方法:

 $.ajax({
datatype: 'json',
data: testModel // ?? or some other way?
// etc
});

Controller :

 public ActionResult PostModel (ModelName model)  // or JsonResult
{
//do things
return Json(model); // or return View?
}

如有任何帮助,我们将不胜感激。

我已经尝试了其他人在下面建议的内容,但事务仍然从未到达 Controller 方法。为什么不呢?

最佳答案

Ajax type Specifies the type of request. (GET or POST) DETAILS

$.ajax({
type: 'POST',//or GET
dataType: 'json',
data: testModel // ?? or some other way?
// etc
});

关于javascript - 发布到 MVC4 中的 Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26382602/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com