關於symfony(doctrine)表復用的實現
怪我咯
怪我咯 2017-07-03 11:42:27
0
2
764

有四張表

Articles:(id, body)
Questions (id, body)
Votes (id, user_id, votable_id, vote_type)
comments(id, user_id, body, commentable_id, comment_type)

vote儲存使用者對Articles和Questions的讚記錄;使用vote_type區分儲存的記錄是對文章還是問題的讚

id user_id votable_id vote_type 說明
1 2 1 article 此記錄表示用戶2對文章1的按讚
1 2 1 question 該記錄表示用戶2對問題1的讚

comments儲存使用者對Articles和Questions的回覆記錄;使用commentable_type區分儲存的記錄是對文章還是問題的回應

id user_id commentable_id comment_type 說明
1 2 1 article 該記錄表示用戶2對文章1的回應
1 2 1 question 該記錄表示用戶2對問題1的回應

背景結束;

那麼怎麼宣告他們之間的mapping關係呢;

use Doctrine\ORM\Mapping as ORM;
/**
 * @ORM\Entity
 * @ORM\Table(name="articles")
 */
class Article
{
   //...
    /**
     *
     * @ORM\OneToMany(targetEntity="Vote", mappedBy="votable")
     */
    $votes;
}

class Vote
{
   //...
    /**
     *
     * @ORM\ManyToOne(targetEntity="Article|Question?", inversedBy="votes")
     */
    $votes;
}
怪我咯
怪我咯

走同样的路,发现不同的人生

全部回覆(2)
为情所困
use Doctrine\ORM\Mapping as ORM;
/**
 * @ORM\Entity
 * @ORM\Table(name="articles")
 */
class Article
{
    // ...
}

/**
 * @ORM\Entity
 * @ORM\Table(name="articles")
 */
class ArticleVote extends Article
{
    /**
     *
     * @OneToMany(targetEntity="VoteArticle", mappedBy="votable_id")
     */
    private $id;
}

/**
 * @ORM\Entity
 * @ORM\Table(name="articles")
 */
class ArticleComment extends Article
{
    /**
     *
     * @OneToMany(targetEntity="CommentArticle", mappedBy="commentable_id")
     */
    private $id;
}

/**
 * @ORM\Entity
 * @ORM\Table(name="votes")
 */
class Vote
{
    // ...
}

/**
 * @ORM\Entity
 * @ORM\Table(name="votes")
 */
class VoteArticle
{
    /**
     *
     * @ORM\ManyToOne(targetEntity="ArticleVote", inversedBy="id")
     */
    private $votable_id;
}

/**
 * @ORM\Entity
 * @ORM\Table(name="comments")
 */
class Comment
{
    // ...
}

/**
 * @ORM\Entity
 * @ORM\Table(name="comments")
 */
class CommentArticle
{
    /**
     *
     * @ORM\ManyToOne(targetEntity="ArticleComment", inversedBy="id")
     */
    private $commentable_id;
}

其他類似,另外,查詢時加入Criteria,請參閱https://www.boxuk.com/insight...

为情所困

@boxsnake 這樣會有個新的問題

>php bin/console doctrine:schema:update --force


  [Doctrine\DBAL\Schema\SchemaException]
  The table with name 'symfony.votes' already exists.


doctrine:schema:update [--complete] [--dump-sql] [-f|--force] [--em [EM]] [-h|--help] [-q|--quiet] [-v|vv|vvv|--verbose] [-V|--version] [--ansi] [--no-ansi] [-n|--no-interaction] [-e|--env ENV] [--no-debug] [--] <command>
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!