dynatable无法从远程JSON创建表

时间:2014-06-14 17:49:34

标签: javascript jquery json dynatable

这是与HTML文件位于同一目录中的feature-table.JSON:

[
  {
    "band": "Weezer",
    "song": "El Scorcho"
  },
  {
    "band": "Chevelle",
    "song": "Family System"
  }
]

这是我的HTML文件:

<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="jquery-1.11.1.min.js">
<script type="text/javascript" src="jquery.dynatable.js"></script>
<script type="text/javascript">
$.getJSON("feature-table.JSON", function(data) {
    alert(data);
    $("#feature-table").dynatable({
        dataset: {
            records: data
        }
    });
});
</script>
</head>
<body>
<table id="feature-table">
  <thead>
    <th>band</th>
    <th>song</th>
  </thead>
  <tbody>
  </tbody>
</table>
</body>
</html>

警报弹出正确的JSON数据,所以我知道它正在找到它。我试过:jQuery的第2版,上传和使用js文件的URL以确保文件在正确的位置,$ .ajax但是在阅读Load remote JSON from Dynatable之后的$ .getJSON以及其他各种事情。我没有想法。我在俯瞰什么?

2 个答案:

答案 0 :(得分:2)

我发现我需要在$(document).ready(function(){...})内部使用我的JavaScript。

答案 1 :(得分:0)

希望这有帮助。

您是否还根据JSON数组的文档包含了元数据。

    {
      "records": [
        {
          "someAttribute": "I am record one",
          "someOtherAttribute": "Fetched by AJAX"
        },
        {
          "someAttribute": "I am record two",
          "someOtherAttribute": "Cuz it's awesome"
        },
        {
          "someAttribute": "I am record three",
          "someOtherAttribute": "Yup, still AJAX"
        }
      ],
      "queryRecordCount": 3,
      "totalRecordCount": 3
    }