我有一个 Grails 2.4.4 应用程序,并且正在尝试实现一个利用jQuery DataTable的 GSP 。我看到有一个旧的 DataTable 插件,但它看起来没有维护并且与 Grails 2.x 不兼容。更不用说,应该有一种方法可以简单地在 Grails 中包含任何JS 库,而无需明确要求插件。
这是plugins
我的部分BuildConfig
:
plugins {
build ":release:3.0.1"
build ":tomcat:7.0.52.1"
compile "org.grails.plugins:gson:1.1.4"
compile ":rest-client-builder:1.0.3"
compile ":yammer-metrics:3.0.1-2"
runtime ":jquery:1.11.1"
runtime ":cached-resources:1.0"
runtime ":resources:1.2.14"
compile ":cache-headers:1.1.7"
compile ":rest-client-builder:1.0.3"
compile ":export:1.6"
compile ":standalone:1.2.3"
compile ":cache-headers:1.1.7"
compile ":scaffolding:2.1.2"
compile ':cache:1.1.3'
runtime ":resources:1.2.14"
runtime ":hibernate:3.6.10.15"
runtime ":database-migration:1.4.0"
runtime ":jquery:1.11.1"
}
由于此问题范围之外的原因,我无法删除或更改该部分中的任何现有声明plugins
,但我可以添加它们。我听说所谓的“资产管道”是一种将 JS 库添加到 Grails 应用程序的新方法,但我能在这个管道上找到的所有文献都是模糊的和高级的。而且我找不到任何真实世界中使用此管道将 DataTables 包含在 Grails 应用程序中的具体示例。
DataTable的“ Hello World! ”版本似乎是这样的:
<table id="example" class="display" cellspacing="0" width="100%">
<thead>
<tr>
<th>Name</th>
<th>Position</th>
<th>Office</th>
</tr>
</thead>
<tbody>
<tr>
<td>Tiger Nixon</td>
<td>System Architect</td>
<td>Edinburgh</td>
</tr>
...lots of more rows
</tbody>
</table>
$(document).ready(function() {
$('#example').DataTable();
} );
所以我问:我如何让(上面的)“Hello World”数据表在 GSP 中运行?我需要连接哪些特定的配置、插件等来完成这项工作?