October/Winter CMS文件缓存的清空
今天在使用static page这个插件的过程中遇到Partial
中的snippet code
中的property
的属性无法更新等一系列问题,具体表现为:
在页面中插入Snipets代码片段并没有生成出partial中的代码,而是直接以<figure data-snippet="breadcrumbs"> </figure>
这样的格式来解析,且不说snippet property中的值怎么获取,光这个就很头疼让调试无法继续进行。最终在github上得到了解决方法:
在命令行使用了php artisan cache:clear
来把缓存清空,再次刷新页面一切正常。
不过这里还需要记录一下文件config/cms.php中的这个edgeUpdates
参数,这里解释的很清楚:
如果您使用 Winter 进行开发,那么拥有最新的代码库非常重要。将此值设置为“true”以告诉平台下载和使用核心文件和插件的开发副本。
/* |-------------------------------------------------------------------------- | Bleeding edge updates |-------------------------------------------------------------------------- | | If you are developing with Winter, it is important to have the latest | code base. Set this value to 'true' to tell the platform to download | and use the development copies of core files and plugins. | */ 'edgeUpdates' => false,
当然了,最后我是没有通过此方法解决问题的,这里记录一下它的使用。