原因: 缓存问题

找到  thinkphp\library\think\Template.php

找到  public function fetch($template, $vars = [], $config = [])

if ($template) {
$cacheFile = $this->config['cache_path'] . $this->config['cache_prefix'] . md5($this->config['layout_name'] . $template) . '.' . ltrim($this->config['cache_suffix'], '.');
// if (!$this->checkCache($cacheFile)) { 将此if判断注释掉
// 缓存无效 重新模板编译
$content = file_get_contents($template);
$this->compiler($content, $cacheFile);
// }
// 页面缓存
ob_start();
ob_implicit_flush(0);
// 读取编译存储
$this->storage->read($cacheFile, $this->data);
// 获取并清空缓存
$content = ob_get_clean();
if (!empty($this->config['cache_id']) && $this->config['display_cache']) {
// 缓存页面输出
Cache::set($this->config['cache_id'], $content, $this->config['cache_time']);
}
echo $content;
}

1

最新文章

  1. iOS 摇一摇
  2. linux type命令用法_转
  3. 在sql语句中使用plsql变量
  4. Linux 搭建svn版本库
  5. 新鲜出炉的JSON,拿走不谢!
  6. 数据结构之合并链表STL
  7. Javascript CustomEvent
  8. sed的N;P用法
  9. Redis监控工具,命令和调优
  10. laravel-mix的安装
  11. es6 新增数据类型Symbol
  12. POJ 3281 Dining (拆点)【最大流】
  13. Pandas学习1 --- 数据载入
  14. 牛客OI周赛4-提高组 A K小生成树(kmst)
  15. C++ Custom Control控件 向父窗体发送对应的消息
  16. C源程序怎么变成可执行文件
  17. js代码实现购物车效果
  18. PHP 图片处理类 错误处理方法:
  19. MySQL只有.frm文件恢复表结构
  20. java正则表达式简介

热门文章

  1. web服务器请求代理方式
  2. openresty开发系列30--openresty中使用全局缓存
  3. (转)scipy详解
  4. 解决端口被占用问题(端口timewait)
  5. GitLab - GitLab的备份与还原
  6. SpringBoot系列教程web篇之如何自定义参数解析器
  7. python random模块(14)
  8. python 可变数据类型和不可变数据类型(7)
  9. javaScript的高级函数
  10. 深度解析qml引擎---(1)Qml文件加载