Access AJAX返回了JSON数据

时间:2017-10-14 17:06:04

标签: jquery json ajax

我从名为/CategoryResearch/Search的方法获取JSON响应,但我必须知道如何使用该JSON数据将此数据注入我的HTML表。我是AJAX的新手,这就是为什么我无法从AJAX调用中访问返回的数据值。请查看下面的示例代码。

$.post("/CategoryResearch/Search", { 
  OperationName: _operationname, 
  calltype: _calltype, 
  keywords: _keywords 
})
.done(function (data) {
  if (data != null) {
    $("#normalState").fadeOut();
    // this "data" contains returned Json. How can i access this?
    var u = data.property.value // something like this way?
}});

0 个答案:

没有答案