我获得了以下JSON格式,而且我很难获得这些信息。我想把它放到数据表中。
"data": {
"HeadingOne":{
"Columns":["Row1", "Row2"],
"Data":[["firstData", "secondData"]]
}
}
我被告知我应该能够访问这些数据,但我完全不知道如何在数据表中找到“firstData”。 (来自datatables.net)这是我试过的
$(document).ready(function() {
$('#example').dataTable( {
"ajax": "<%= request.getContextPath()%>/ajax/mastermenu.txt",
"columns":[
{"data": "HeadingOne.Data.Row1"}
]
} );
} );
HTML:
<table id="example" class="display" cellspacing="0" width="100%">
<thead>
<tr>
<th>Row1</th>
<th>Row2</th>
</tr>
</thead>
</table>
答案 0 :(得分:4)
正如其他人所说,你最后错过了}
。解决之后,这应该有效。
假设该对象被称为data
,这将为您提供"firstData"
console.log(data.HeadingOne.Data[0][0]); // "firstData"
答案 1 :(得分:0)
Yeuch。但是:
var data = {
"HeadingOne":{
"Columns":["Row1", "Row2"],
"Data":[
["firstData", "secondData"]
]
}
}
var firstData = data['HeadingOne']['Data'][0][0]
注意:我必须向该块添加最终}
,否则它无效
如果您尝试按名称访问firstData,希望很明显它不会工作,因为它包含在数组中的数组中(因此{{1 }})。