我写了一个插件,它有这样的标签库:
class MyTagLib {
static namespace = "my"
Closure someWidget = { attrs ->
// Need somehow add styles to page
// ...
}
}
我使用asset-pipeline
插件,找不到任何方法动态添加样式表(到head
标签中)。
应用程序的基本gsp布局(不是我的插件):
<!DOCTYPE html>
<%@ page contentType="text/html;charset=UTF-8" %>
<html>
<head>
<g:layoutHead/>
<title><g:layoutTitle/></title>
</head>
<body>
<g:layoutBody/>
<asset:deferredScripts/>
</body>
</html>
我需要taglib中的类似内容:
g.putItIntoHead(asset.stylesheet(src: 'assets/my.css'))
您想要的是一个注入javascript代码的标签。
class MyTagLib {
static namespace = "my"
Closure putItIntoHead= { attrs ->
out << " var head = document.head ";
out << " var link = document.createElement('link')";
out << " link.type = 'text/css'";
out << " link.rel = 'stylesheet'";
out << " link.href = '{url}'";
out << " head.appendChild(link)";
}
}
你也可以使用jquery,(查看这个问题了解更多)
你不一定要把它加到脑子里