1

我正在尝试使用 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>

该表为ato绘制良好,但对于和f都显示为未定义。如何将 json 传递给包含空格的 dynatable?weekOfYearWeek of year

4

1 回答 1

1

这很奇怪。起初它似乎对我也不起作用,但这里有一个链接到一个包含您的数据的工作示例。希望这会有所帮助

http://jsfiddle.net/jmtw1tpr/

我变了

<th>weekOfYear</th>

<th>week</th>
于 2014-09-25T19:50:27.407 回答