dongmi4734 2016-06-24 23:46
浏览 41
已采纳

Laravel 5.2 - 如何在加载所有内容之前呈现页面

I've another question about Laravel.

I've got gallery in my project which loads a lot of images (currently it's about 80 but it will still grow). The way I'm loading images is easy - in controller I get all the records from photos table and just passing them to view. In view I have foreach loop which shows every image.

The problem is that Laravel is probably caching the rendered page and then loads it. It causes gallery page long lasting loading (now between 5-10 sec depends on server load).

Am I right that it firstly caches the rendered page and then loads it? Will using faster caching package solve the problem? Or is there any other way to speed up site loading?

Thanks in advance!

  • 写回答

1条回答 默认 最新

  • dongxu7408 2016-06-25 01:55
    关注

    What you want goes beyond Laravel and the slow load time is due to the amount of time it takes for the client to download the images. (Unless of course you are sending the images in base64 which would be quite strange in this case.)

    Here is how others have solved this problem:

    • Create thumbnails for all the images and full size images are viewed after a thumbnail link is clicked.
    • Use a JavaScript to load the images.
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?