0

是否可以使用 appcache 文件(缓存清单)来缓存 Laravel 视图?

这个想法是缓存视图并使用 web sql 数据库离线访问 web 应用程序。可能吗 ?

谢谢你的帮助

4

1 回答 1

0

使用App::before()App::after()事件...你可以这样做:

App::before(function() {
  $path = Request::path();
  // find cached file, if available, and send that instead?
});

App::after(function($request, $response) {
  // $response is the rendered HTML output.. do storage here.
});
于 2013-07-09T20:56:07.237 回答