我有以下内容:
$.post('@Url.Action("getName")', postData, function(data) {
// Can I use my json post data?
}, 'json');
我的帖子回复我有
{"Id":1,"Name":"John", "Age": 24}
我不知道如何让这个帖子回复显示在我的页面视图上。
我正在使用 MVC 4,并且我已经在此页面中有一个模型,下拉选择更改会触发此帖子。
请指教。