作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想了解浏览器发布请求如何将模型传递给 MVC Controller 操作。我了解表单集合是在 post 请求中传递的。
我不明白整个 View 模型是如何通过 HTTP 以允许它访问模型对象的方式传递给 MVC Controller 的。
[HttpPost]
public ActionResult PostDataExample(PostDataViewModel model)
{
return Content(model.property1.ToString());
**//How are we able to get above model from browser ?**
}
最佳答案
这是由 Model View Binder 完成的,我自己也只是部分了解。 This是阅读的良好起点。
关于post - 浏览器如何将模型传递给 MVC Controller 操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30018443/
我是一名优秀的程序员,十分优秀!