• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

laravel Eloquent ORM —— 关联

php 搞代码 4年前 (2022-01-23) 22次浏览 已收录 0个评论
文章目录[隐藏]

表结构

<code>posts    id - integer    title - string    body - textcomments    id - integer    post_id - integer    user_id - integer    body - textusers    id - integer    name - string    phone - integer    sex - integer    comment_likes    id - integer    comment_id - integer    user_id - integer</code>

使用 laravel Eloquent ORM

<code><?phpnamespace App;use Illuminate\Database\Eloquent\Model;<i style="color:transparent">本文来源gaodai$ma#com搞$$代**码)网8</i><strong>搞代gaodaima码</strong>class Posts extends Model{     /**     * @var string     */    protected $table = 'posts';    public function comments()    {        return $this->belongsTo('App\Comments', 'post_id', 'id');    }}</code>

希望 在查询 posts 的 留言信息的时候, 一起通过 commentsuser_id 的查询到 users 所有的信息

回复内容:

表结构

<code>posts    id - integer    title - string    body - textcomments    id - integer    post_id - integer    user_id - integer    body - textusers    id - integer    name - string    phone - integer    sex - integer    comment_likes    id - integer    comment_id - integer    user_id - integer</code>

使用 laravel Eloquent ORM

<code><?phpnamespace App;use Illuminate\Database\Eloquent\Model;class Posts extends Model{     /**     * @var string     */    protected $table = 'posts';    public function comments()    {        return $this->belongsTo('App\Comments', 'post_id', 'id');    }}</code>

希望 在查询 posts 的 留言信息的时候, 一起通过 commentsuser_id 的查询到 users 所有的信息

Comment.php

<code>class Comment extends Model {    public function user () {        return $this->hasOne('App\User', 'id', 'user_id');    }}</code>

读取时 with

<code>$posts = Post::where(....)->with(['comments' => function($query) {    $query->with('user');}])->get();foreach($posts $post)    foreach($post->comments as $comment)        echo $comments->user->name;</code>

一般是这么弄的,使用with比较省性能,


如果你对性能不在乎,可以如下这么弄。不过我会给你打0分。不要学下面

<code>$posts = Post::find(1);foreach ($posts->comments as $comment)    echo $comment->user->name;</code>

为什么?看看我写的ORM的教程中对使用with的区别
http://www.load-page.com/base&#8230;


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:laravel Eloquent ORM —— 关联

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址