是否可以使用appcache文件(缓存清单)来缓存Laravel视图?
我们的想法是缓存视图并使用Web sql数据库脱机访问Web应用程序。有可能吗?
感谢您的帮助
答案 0 :(得分: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.
});