【发布时间】:2021-05-02 04:13:53
【问题描述】:
我正在从数据库中获取数据,该数据库从数据库中返回了近 5000 条记录。当我通过网络看到资源大小时,它是 10 mb 的大小。
这张表有将近五十列。有什么办法可以减小浏览器网络选项卡中显示的大小?
这里是查询
$consignments = Consignment::query();
$consignments->where('delivery_run_id', null);
$consignments = $consignments->orderBy('id', 'desc')->limit(5000)->get();
return Response::json(['status' => 'success', 'consignment' => $consignments]);
我尝试使用select() 但没有效果
【问题讨论】:
-
您在特定领域使用过
select()? -
是的,例如 o
id -
试试这个
get(['id']);
标签: laravel eloquent laravel-5.8