如何正确使用Bootstrap表data-url属性?

时间:2017-04-22 23:39:28

标签: javascript twitter-bootstrap bootstrap-table

我试图弄清楚如何使用Bootstrap表的data-url属性 这是我的代码。我已经添加了所有必需的CSS / JS文件,并在data-url属性中引用了正确的JSON表单文件,但它仍然没有显示任何结果。我在这里缺少什么?

<!doctype html>
<html lang="en">

<head>

<!-- Required CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-table/1.11.1/bootstrap-table.css">

</head>

<body>

<table class ="table table-hover" id ="table" data-toggle="table" data-url="https://raw.githubusercontent.com/wenzhixin/bootstrap-table-examples/master/json/data1.json">
    <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>
</body>

<!-- Required js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-table/1.11.1/bootstrap-table.js"></script>
<script>
    $(table).bootstrapTable('refresh', {
        url: 'https://raw.githubusercontent.com/wenzhixin/bootstrap-table-examples/master/json/data1.json'
    });
</script>

</html>

1 个答案:

答案 0 :(得分:3)

查看浏览器调试器中的网络选项卡。由于同源策略,您很可能会收到400错误。浏览器不能*从与其托管的域不同的域请求内容。

*一般来说,有办法解决这个问题。

https://developer.mozilla.org/en-US/docs/Web/Security/Same-origin_policy