我正在尝试使用 dyntable 将数据写入 html 表。其中一个标题称为Week of year
. 在 JSON 文件中,名称也是Week of year
(带有空格)。将 json 传递给 dynatable 时:
$('#week_table').dynatable({
dataset: {
records: [{"Week of year":"June 9, 2014 to June 15, 2014","a":0.0,"b":0.0,"c":0.0,"d":0.0,"e":1.0,"f":0.0},{"Week of year":"June 16, 2014 to June 22, 2014","a":0.0,"b":0.0,"c":5.0,"d":0.0,"e":16.0,"f":0.0}]
}});
并绘制到 html 表:
<table id="week_table">
<thead>
<th>weekOfYear</th>
<th>Week of year</th>
<th>a</th>
<th>b</th>
<th>c</th>
<th>d</th>
<th>e</th>
<th>f</th>
</thead>
<tbody>
</tbody>
</table>
该表为a
to绘制良好,但对于和f
都显示为未定义。如何将 json 传递给包含空格的 dynatable?weekOfYear
Week of year