如何为数据格式化程序返回函数的请求json - Bootstrap表

时间:2017-07-21 15:27:22

标签: twitter-bootstrap relationship bootstrap-table

我试图在我的getJSON函数中为bootstrap-table的数据格式化函数返回一个值,但是我不能,它只是出现在&... #34; - &#34 ;.你能帮我解决这个问题吗?我想做一个类似关系的请求,你怎么看下面。

HTML

<th data-formatter="Category" data-sortable="true">Category</th>

使用Javascript:

function Category (value, row, index) {
var data = null;
$.getJSON(datasrc+"/"+row.category_id, function(d){
data = d.name;
});
return data;
}

0 个答案:

没有答案