gpt4 book ai didi

grails - 命令行中的Grails自定义标志

转载 作者:行者123 更新时间:2023-12-02 15:26:48 24 4
gpt4 key购买 nike

我需要将标志传递给grails,以便我可以有条件地在gsp中包含一段javascript。

我不想定义一个新的环境来执行此操作。
我想包含的javascript是针对takana的(类似于livereload,但效果更好),这是仅适用于osx的工具,我不希望Windows计算机上的其他开发人员获得该javascript片段。

最佳答案

我会像这样在GSP中进行操作

<g:if test="${System.properties['os.name'] == 'Mac OS X'}">
<script src="/path/to/file.js" type="text/javascript"></script>
</g:if>

如果您只想将此JS包含在dev中。环境,将其更改为
<g:if test="${System.properties['os.name'] == 'Mac OS X'}" env="development">
<script src="/path/to/file.js" type="text/javascript"></script>
</g:if>

关于grails - 命令行中的Grails自定义标志,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26302725/

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