有时当我带来CSS或HTML内容或控制器的更改时,我会多次刷新,但更改不适用于应用程序,它仍然看起来像过去。有人遇到过这个问题吗?或者我将如何解决这个问题?
答案 0 :(得分:0)
如果您不使用PSR-4自动加载。您需要使用$ composer dump-autoload -o
反映新控制器(请注意-o优化类映射)。
除此之外,你是否支持任何缓存驱动程序?
答案 1 :(得分:0)
为了更好地衡量,请在开发缓存配置(\ app \ config \ development \ cache.php)中更改以下内容(不要有开发文件夹?Read this )以及:
<?php
return array(
/*
|--------------------------------------------------------------------------
| Default Cache Driver
|--------------------------------------------------------------------------
|
| This option controls the default cache "driver" that will be used when
| using the Caching library. Of course, you may use other drivers any
| time you wish. This is the default when another is not specified.
|
| Supported: "file", "database", "apc", "memcached", "redis", "array"
|
*/
'driver' => 'file',
Laravel会将所有缓存文件存储在以下文件夹中:app\storage\cache
并在以下位置查看缓存:app\storage\view
。必要时清除两者。