在 ASP.NET MVC 视图中,使用JQuery $.getJSON
或$.ajax
填充模型的语法是什么?
后面的MVC代码是用C#编写的。
对于MVC View有类似的东西吗? -
@model MyModel $.getJSON('@Url.Action("MyAction","MyController")/', function (dataReturned) { @model = dataReturned //put the data that is returned into the Model }
答案 0 :(得分:0)
MVC只是一种模式,有无限的方式来实现它。告诉我们服务器端的语言和库是什么,也许我们可以帮助您。