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?
}