使用带有C#代码的JQuery ajax在视图中填充MVC模型

时间:2012-10-12 19:57:43

标签: c# jquery ajax asp.net-mvc

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

}

1 个答案:

答案 0 :(得分:0)

MVC只是一种模式,有无限的方式来实现它。告诉我们服务器端的语言和库是什么,也许我们可以帮助您。