我从名为/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?
}});