du8864 2014-11-18 00:00
浏览 66
已采纳

Laravel雄辩地添加自定义查询元素

So I am having some trouble with size and server requests. So I am trying to get a minified version of a row from eloquent. So for example here is my query call

$user = User::where('email', '=', 'example@test.com')->first();

This works but returns a ton of information. Stuff that I do not need, relations, observables, dates, guarded status, fillable AND every single column. This is expected so If I want to get first and last name and email. I could do something like this

$users = DB::table('users')->select('firstname','lastname', 'email')->get();

And this would work, except I don't want to type that every single time I wanna do this. Is it possible for me to setup somewhere in eloquent or in my model so that I can do

$user = User::where('email', '=', 'example@test.com')->min()->first();

Simply add a custom function called min() that only grabs those three values. Is something like this possible?

  • 写回答

3条回答 默认 最新

  • douyu3145 2014-11-18 00:13
    关注

    Yes, you can do it if you declare a method in your User model like this:

    // User.php
    public function scopeMin($query)
    {
        return $query->select('firstname','lastname', 'email');
    }
    

    Then you can use it like this (To get only 'firstname','lastname', 'email'):

    $user = User::where('email', '=', 'example@test.com')->min()->first();
    

    Read about Query Scope on the documentation.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 抖音咸鱼付款链接转码支付宝
  • ¥15 ubuntu22.04上安装ursim-3.15.8.106339遇到的问题
  • ¥15 求螺旋焊缝的图像处理
  • ¥15 blast算法(相关搜索:数据库)
  • ¥15 请问有人会紧聚焦相关的matlab知识嘛?
  • ¥15 网络通信安全解决方案
  • ¥50 yalmip+Gurobi
  • ¥20 win10修改放大文本以及缩放与布局后蓝屏无法正常进入桌面
  • ¥15 itunes恢复数据最后一步发生错误
  • ¥15 关于#windows#的问题:2024年5月15日的win11更新后资源管理器没有地址栏了顶部的地址栏和文件搜索都消失了