在用 Razor 编写的 ASP.NET MVC 视图中,如何使用 JQuery 的 $.getJSON 或 $.ajax 将数据绑定到模型?
视图可以这样写吗?-
@model MyModel
$.getJSON('@Url.Action("MyAction","MyController")/', function (dataReturned) {
@model = dataReturned //something like this?
//how can you put the data into the Model?
}