doujinyi1267 2017-10-27 08:31
浏览 97
已采纳

为什么要改变Eloquent ORM的价值?

I face small puzzle problem in Laravel select query. It automatic change data type.

When i use

$data = Model::select('user_id AS id')->get(); 

data is [{"id":3},{"id":4}] // not actual value

But When i use (only change Alias id to ID)

$data = Model::select('user_id AS ID')->get(); 

data is [{"ID":"03"},{"ID":"04"}] // actual value

what is the problem

  • 写回答

1条回答 默认 最新

  • doubei5310 2017-10-27 10:38
    关注

    This is because Laravel automatically casts the id field to an integer, as it will be the primary key of your model.

    Primary Keys

    Eloquent will also assume that each table has a primary key column named id. You may define a protected $primaryKey property to override this convention.

    In addition, Eloquent assumes that the primary key is an incrementing integer value, which means that by default the primary key will be cast to an int automatically. If you wish to use a non-incrementing or a non-numeric primary key you must set the public $incrementing property on your model to false. If your primary key is not an integer, you should set the protected $keyType property on your model to string.

    laravel.com/docs/5.5/eloquent

    If you wish to set the property ID to an integer, you can use Eloquent's Attribute Casting:

    laravel.com/docs/5.5/eloquent-mutators#attribute-casting

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀