我无法在我的html页面中访问_sValues,但是我能够在控制台中控制感兴趣的_sValues数组元素。
JSON
[
{
"_this":{
"_isEvent":false,
"_sNames":[
"name",
"tag",
"notes",
"input",
"type",
"action"
],
"_sValues":[
"Testing01",
"#13",
"1504013826",
"No details",
"cType",
"NA"
],
"_cName":"namesList",
"_dName":"TEST",
"_id":"12345",
}
}
]
HTML
<th class="col-md-5 col-xs-5" data-field="_this._sValues[1]" data-sortable="true">S-VALUES</th>
我希望在页面上显示#13,而不是看到任何值或控制台错误。但是我可以通过_this.sValues
SCRIPT
var data;
$(function () {
$.getJSON("http://localhost:8080/services/webapi/getAllData", function(json){
data = json;
$('#table').bootstrapTable({
data: data
});
});
});
DEV TOOL
data[0]._this._sValues[1]
"#13"
答案 0 :(得分:1)
在你的情况下, 我假设你只有一行。
UIViewController
它会将数据注入html。 如果你有多行,你可以使用for循环。
答案 1 :(得分:1)
我相信你有一个无声的错误。它与数据对象中的尾随逗号有关。
"_id":"12345",
// should be
"_id":"12345"
这就是我注意到的一切。我库尔贝特错了,但我知道尾随的逗号混乱了一些浏览器。