我希望知道如何更快更有效地从数据库中选择数据,因为我正在使用单页应用程序,它在加载页面之前显示来自数据库的数据,因此我编写了一个代码,用于从route.php
中的数据库中进行选择Laravel如下。
Route::get('/', function () {
$image = DB::table('imagedetails')->select('tittle', 'content','filename','album')->get();
$project = DB::table('projects')->select('projecttittle', 'contentofprojects','imageofprojects','extension')->get();
return view('index')->with('imagedet',$image)
->with('project',$project);
});
但我担心如果数据库表中的内容增加会影响页面加载时间。
请帮助我理解更好的方法。