>백엔드 개발 >PHP 튜토리얼 >laravel Eloquent ORM - 관련성

laravel Eloquent ORM - 관련성

WBOY
WBOY원래의
2016-10-11 14:23:371219검색

테이블 구조

<code>posts
    id - integer
    title - string
    body - text

comments
    id - integer
    post_id - integer
    user_id - integer
    body - text
users
    id - integer
    name - string
    phone - integer
    sex - integer
    
comment_likes
    id - integer
    comment_id - integer
    user_id - integer</code>

사용 laravel Eloquent ORM

<code><?php

namespace 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의 모든 정보

를 조회할 수 있기를 바랍니다.

답글 내용:

테이블 구조

<code>posts
    id - integer
    title - string
    body - text

comments
    id - integer
    post_id - integer
    user_id - integer
    body - text
users
    id - integer
    name - string
    phone - integer
    sex - integer
    
comment_likes
    id - integer
    comment_id - integer
    user_id - integer</code>

사용 laravel Eloquent ORM

<code><?php

namespace 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>

읽을 때

<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>

보통 저장 성능을 사용하면


성능에 크게 신경쓰지 않는다면 아래와 같이 하시면 됩니다. 하지만 0점을 주겠습니다. 다음에서 배우지 마세요

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

왜요? 제가 작성한 ORM 튜토리얼에서 with를 사용할 때의 차이점을 살펴보세요
http://www.load-page.com/base...

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.