Bootstrap示例:将数据从JSON加载到表中

时间:2014-09-19 02:49:33

标签: javascript html json twitter-bootstrap

我正在尝试按照此Bootstrap教程here进行操作,到目前为止,下面的代码如下所示。此代码似乎加载HTML页面确定但它不会加载.json文件中的数据,即使.json文件位于同一目录中。我将这些文件放在我的网络服务器上并通过Chrome查看页面,但仍然使用空表。控制台不显示任何内容。如何才能将data1.json数据显示在表格中,我怎么能解决这个问题?

谢谢

    <!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Bootstrap 101 Template</title>

    <!-- Bootstrap -->
    <link href="css/bootstrap.min.css" rel="stylesheet">

    <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
    <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
    <!--[if lt IE 9]>
      <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
      <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
    <![endif]-->
  </head>
  <body>
    <h1>Hello, world!</h1>

    <table data-toggle="table" data-url="data1.json" data-cache="false" data-height="299">
    <thead>
        <tr>
            <th data-field="id">Item ID</th>
            <th data-field="name">Item Name</th>
            <th data-field="price">Item Price</th>
        </tr>
    </thead>
    </table>

    <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
    <!-- Include all compiled plugins (below), or include individual files as needed -->
    <script src="js/bootstrap.min.js"></script>
  </body>
</html>

2 个答案:

答案 0 :(得分:7)

Bootstrap不支持您要使用的表格功能。你必须包括Bootstrap表。否则它就不会起作用。下载Bootstrap表并在您的代码中使用它。 http://bootstrap-table.wenzhixin.net.cn/getting-started

答案 1 :(得分:2)

迟到的答案,但以防万一有人处理这个问题。使用类似Ajax的请求的一个问题是您需要一台服务器。实际上任何服务器都可以做到,但你无法让它在纯文件系统上运行。