我创建了一个Grails
项目。现在我想使用twitter-bootstrap
。我已成功安装bootstrap
。但我想知道如何在index.html page
<r:require modules="bootstrap" />
<r:layoutResources />
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet"
href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet"
href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap-theme.min.css">
<!-- Latest compiled and minified JavaScript -->
<script
src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
答案 0 :(得分:1)
如果您安装了bootstrap
插件,则只需调用所需的模块
BuidConfig.groovy
compile ":twitter-bootstrap:2.3.2"
然后在GSP
<r:require modules='bootstrap-css, bootstrap-js, bootstrap-modal, ...'/>