gpt4 book ai didi

php - 如何使用 Laravel 的 Eloquent ORM 为(可能的)多态关系构建模型

转载 作者:搜寻专家 更新时间:2023-10-31 22:07:52 24 4
gpt4 key购买 nike

我有一个关于 Eloquent ORM 的问题——在这种情况下,特别是与 Laravel 4 一起使用。我使用它来运行基本查询和关系没有问题,但我最近对这个有点独特的场景/模式感到困惑:

我有三个表。他们的结构目前是这样的:

post
id - int
post_type - enum(ARTICLE, QUOTE)
user_id - int
created_at - timestamp
updated_at - timestamp

post_type_article
id - int
post_id - int
title - varchar
summary - varchar
url - varchar

post_type_quote
id - int
post_id = int
author = varchar
quote = text

最后,我只想使用 Eloquent ORM 运行一个查询/函数,并获取所有帖子及其各自的数据,而不管 post_type。

我真的很想听到一些对此的反馈(我的关系,我的模型应该是什么)。据我了解,这可能是一个多态关系。这是我的模型,但我是新手,不确定这是否是正确的方向:

模型:Post.php:

<?php

class Post extends Eloquent {

public function postType()
{
return $this->morphTo();
}

}

模型:PostTypeArticle.php:

<?php

class PostTypeArticle extends Eloquent {

public $timestamps = FALSE;
protected $table = 'post_type_article';

public function post()
{
return $this->morphMany('Post', 'post_type');
}
}

模型:PostTypeQuote.php:

<?php

class PostTypeQuote extends Eloquent {

public $timestamps = FALSE;
protected $table = 'post_type_quote';

public function post()
{
return $this->morphMany('Post', 'post_type');
}

}

也许因为我使用 ENUM 作为外键,所以我需要明确指定它?无论如何,希望你能发现我的困惑并指出正确的方向。感谢您在我掌握这方面的高级帮助。

最佳答案

我会勇敢地面对这个并将类型表压缩成一个:post_types:

帖子

    id - int (auto-increment)
user_id - int (unsigned)
created_at - timestamp
updated_at - timestamp

post_types

    id - int (auto-increment)
type - int //or varchar
post_id - int (unsigned)
title - varchar
summary- varchar
url - varchar
author - varchar
quote - text

使post_types 表中的大部分字段可为空(你的作业)

Post.php

<?php

class Post extends Eloquent {

public function postType()
{
return $this->hasOne('Posttype'); //or hasMany()
}

}

Posttype.php

<?php

class Posttype extends Eloquent {
protected $table = 'post_types';

public function post()
{
return $this->belongsTo('Post');
}

}

获得结果

$posts = Post::with('postType')->get(); //eager-loading

$post = Post::find(1)->postType; //One post

作业

  1. 使用验证来确保您在数据库中需要的字段都在用户输入中
  2. 决定在哪里运行您的 if 语句,以确定您是在处理文章还是引述

关于php - 如何使用 Laravel 的 Eloquent ORM 为(可能的)多态关系构建模型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16005324/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com