0
在用Razor編寫的ASP.NET MVC視圖中,如何使用JQuery的$ .getJSON或$ .ajax將數據綁定到模型?使用JQuery將數據綁定到視圖中的模型ajax
視圖可以寫成這樣嗎? -
@model MyModel
$.getJSON('@Url.Action("MyAction","MyController")/', function (dataReturned) {
@model = dataReturned //something like this?
//how can you put the data into the Model?
}
謝謝webdeveloper!我試圖找到一種方法來使用Ajax來獲取(也發佈)和刷新網頁,同時綁定到模型。 –