gpt4 book ai didi

javascript - 如何使用引导表导出扩展

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:42:07 25 4
gpt4 key购买 nike

我有一张表格,我希望能够将其导出。我在 http://bootstrap-table.wenzhixin.net.cn/ 偶然发现了 bootstrap-table并认为它很棒,所以我开始使用其中的一些东西。分页、搜索和其他功能,太棒了!但我不知道如何让该死的导出扩展工作!我从事此工作已经很长时间了,搜索论坛、博客和 github 上的文档。无论如何,这就是我的位置。

我跑了

npm install bootstrap-table

然后我在我的标题中添加了行,并在我的正文中添加了这个示例中的脚本:http://issues.wenzhixin.net.cn/bootstrap-table/#extensions/export.html现在我的 index.html.erb 看起来像这样:

<head>
<meta charset="utf-8">
<link rel="stylesheet" href="../assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="../assets/bootstrap-table/src/bootstrap-table.css">
<link rel="stylesheet" href="../assets/examples.css">
<script src="../assets/jquery.min.js"></script>
<script src="../assets/bootstrap/js/bootstrap.min.js"></script>
<script src="../assets/bootstrap-table/src/bootstrap-table.js"></script>
<script src="../assets/bootstrap-table/src/extensions/export/bootstrap-table-export.js"></script>
<script src="//rawgit.com/hhurz/tableExport.jquery.plugin/master/tableExport.js"></script>
<script src="../ga.js"></script>
</head>
<body>


<div class="container">

<div id="toolbar">
<select class="form-control">
<option value="">Export Basic</option>
<option value="all">Export All</option>
<option value="selected">Export Selected</option>
</select>
</div>
<div class="booyah-box">
<table id="table"
data-toggle="table"
data-show-export="true"
data-pagination="true"
data-click-to-select="true"
data-toolbar="#toolbar"
data-url="../json/data1.json"
data-page-list="[10, 25, 50, 100, ALL]"
data-search="true"
data-show-pagination-switch="true"
data-show-columns="true"
data-minimum-count-columns="2"
>

<thead>
<tr>
<th data-field="state" data-checkbox="true">Select</th>
<th data-field="Project ID">Project ID</th>
<th data-field="Status">Status</th>
<th data-field="Project Type">Project Type</th>
<th data-field="Marker Strategy">Marker Strategy</th>
<th data-field="Traits">Traits</th>
<th data-field="Line">Line</th>
<th data-field="Line Origin">Line Origin</th>
<th data-field="Market Region">Market Region</th>
<th data-field="Governance Qualifier">Governance Qualifier</th>
<th data-field="New Start Year">New Start Year</th>
<th data-field="Initial Version Test Year">Initial Version Test Year</th>
<th data-field="Estimated Version Test Year">Estimated Version Test Year</th>
<th data-field="Last Location">Last Location</th>
<th data-field="Trait Code">Trait Code</th>
<th data-field="CMS Subtype/Type">CMS Subtype/Type</th>
<th data-field="NEIS">NEIS</th>
<th data-field="Root ID1">Root ID1</th>
<th data-field="Root ID2">Root ID2</th>
</tr>
</thead>


<tbody>
<% @tiprojects.each do |x| %>
<tr>
<td></td>
<td><%= x.pidtc %></td>
<td><%= x.status %></td>
<td><%= x.protype %></td>
<td><%= x.marker_strategy %></td>
<td><%= x.traits.upcase %></td>
<td><%= x.line %></td>
<td><%= x.origin %></td>
<td><%= x.market_region.upcase %></td>
<td><%= x.governance_qualifier %></td>
<td><%= x.new_start_year %></td>
<% if x.initial_vt_year == 9999 %>
<td>Not Applicable</td>
<% else %>
<td><%= x.initial_vt_year %></td>
<% end %>
<td><%= x.estimated_vt_year %></td>
<td>NA</td>
<td><%= x.trait_code %></td>
<td><%= x.cms_subtype %></td>
<td><%= x.neis %></td>
<td><%= x.root_pidtc1 %></td>
<td><%= x.root_pidtc2 %></td>
<% end %></tr>
</tbody>
</table>
<br />
<% if current_user.admin? %>
<%= link_to "Download Template Upload", download_csv_path %>
<br />
<%= form_tag import_ti_projects_path, multipart: true do %>
<%= file_field_tag :file %><br />
<%= submit_tag "Upload New Projects" %>
<% end %>
<% end %>
</div>
<script>
var $table = $('#table');
$(function () {
$('#toolbar').find('select').change(function () {
$table.bootstrapTable('destroy').bootstrapTable({
exportDataType: $(this).val()
showExport: 'true'

});
});
})

</script>

</body>

最佳答案

我刚刚做了一个 jsfiddle 来查看一些导出问题。这可能对你有帮助。 jsfiddle .

        <div id="toolbar">
<select class="form-control">
<option value="">Export Basic</option>
<option value="all">Export All</option>
<option value="selected">Export Selected</option>
</select>
</div>
<table id="table"
data-toggle="table"
data-toolbar="#toolbar"
data-show-export="true"
data-pagination="true"
data-maintain-selected="true"
data-page-size="5"
data-page-list="[5, 25, 50, 100, ALL]"
data-url="/gh/get/response.json/wenzhixin/bootstrap-table/tree/master/docs/data/data2/"
data-export-options='{
"fileName": "test",
"ignoreColumn": ["state"]
}'
>
<thead>
<tr>
<th data-field="state" data-checkbox="true"></th>
<th data-field="id">ID</th>
<th data-field="name">Name</th>
<th data-field="price">Price</th>
</tr>
</thead>
</table>

我的有点不同,我的一件事是在 $table.bootstrapTable('destroy').bootstrapTable({

关于javascript - 如何使用引导表导出扩展,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41286469/

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