OctoberCMS如何查看开发模式?
How to check development mode in OctoberCMS?
我有一个包含以下内容的 .env
文件:
APP_ENV=dev
在我的项目的根目录中,这表明我在 development mode
因此,我的配置文件将从 config/dev
目录而不是 config
目录加载。
现在我想通过包含以下脚本将 live reload 添加到我的 html 页面:
<script type="text/javascript">document.write('<script src="//localhost:35729/livereload.js?snipver=1" type="text/javascript"><\/script>')</script>
但如果我在 development mode
而不是 production
,我只希望将其包括在内。我该怎么做?
正如 luketowers 在 10 月份的 Slack 频道上的回答:
https://octobercms.com/docs/markup/this-environment
So for your example you’d do something like this:
{% if this.environment == 'dev' %}
<script src="//localhost:35729/livereload.js?snipver=1" type="text/javascript"></script>
{% endif %}
我有一个包含以下内容的 .env
文件:
APP_ENV=dev
在我的项目的根目录中,这表明我在 development mode
因此,我的配置文件将从 config/dev
目录而不是 config
目录加载。
现在我想通过包含以下脚本将 live reload 添加到我的 html 页面:
<script type="text/javascript">document.write('<script src="//localhost:35729/livereload.js?snipver=1" type="text/javascript"><\/script>')</script>
但如果我在 development mode
而不是 production
,我只希望将其包括在内。我该怎么做?
正如 luketowers 在 10 月份的 Slack 频道上的回答:
https://octobercms.com/docs/markup/this-environment
So for your example you’d do something like this:
{% if this.environment == 'dev' %} <script src="//localhost:35729/livereload.js?snipver=1" type="text/javascript"></script> {% endif %}