gpt4 book ai didi

javascript - Bootstrap表导出数据问题

转载 作者:行者123 更新时间:2023-12-03 08:22:41 24 4
gpt4 key购买 nike

我有一个使用 Jinja2 模板用 Python Flask 编写的 Web 应用程序。我正在尝试添加 Bootstrap 表以从表中导出数据。因此,我下载了 CSS 和 Javascript 文件并将其复制到适当的文件夹中,并如下引用它们。

<link rel="stylesheet" href="{{ url_for('static', filename='css/bootstrap.min.css') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='css/bootstrap-table.min.css') }}">
<script type="text/javascript" src="{{ url_for('static', filename='js/bootstrap.min.js') }}"></script>
<script type="text/javascript" src="{{ url_for('static', filename='js/jquery.min.js') }}"></script>
<script type="text/javascript" src="{{ url_for('static', filename='js/bootstrap-table.js') }}"></script>
<script type="text/javascript" src="{{ url_for('static', filename='js/bootstrap-table-export.js') }}"></script>
<script type="text/javascript" src="{{ url_for('static', filename='js/tableexport.js') }}"></script>
<script>$("div.navbar-fixed-top").autoHidingNavbar();</script>
<link href="http://getbootstrap.com/examples/justified-nav/justified-nav.css" rel="stylesheet">
<link rel="stylesheet" href="http://cdn.bokeh.org/bokeh/release/bokeh-0.9.2.min.css" type="text/css" />
<script type="text/javascript" src="http://cdn.bokeh**strong text**.org/bokeh/release/bokeh-0.9.2.min.js"></script>

为了创建表,我有这部分代码:

<table class="table table-bordered table-hover" id="pageTables" data-toggle="table" data-show-columns="true" data-search="true" data-show-refresh="true" data-show-toggle="true" data-show-export="true" data-pagination="true" data-click-to-select="true" data-toolbar="#toolbar">
<thead>
<tr>
<th data-field="E">E</th>
<th data-field="bthrs">Base </th>
<th data-field="mag">Mag</th>
<th data-field="ht">Ho (secs)</th>
<th data-field="dt">De(secs)</th>
</tr>
</thead>
....

<script>
var $table = $('#table');
$(function () {
$('#toolbar').find('select').change(function () {
$table.bootstrapTable('refreshOptions', {
exportDataType: $(this).val()
});
});
})

它创建了我的表,但导出数据不起作用。你能帮我一下吗?

最佳答案

这可能意味着您的 bootstrap.table.min.css 位置有问题。如果您只有此错误,请检查包含“bootstrap.min.css”的文件夹是否也包含“bootstrap.table.min.css”。如果不存在,请尝试从以下位置下载:http://cdnjs.cloudflare.com/ajax/libs/bootstrap-table/1.9.1/bootstrap-table.min.cssP.S:在你的代码中,你似乎有bootstrap.table.min.css,不是bootstrap-table.min.css。 (有一个点而不是“-”)

关于javascript - Bootstrap表导出数据问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33677752/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com