原文出处:12b-mapping_mongoDB.md原文作者:FriendsOfSymfony授权许可:创作共用协议翻译人员:FireHare校对人员:适用版本:FOSCommentBundle 2.0.
原文出处:12b-mapping_mongoDB.md
原文作者:FriendsOfSymfony
授权许可:创作共用协议
翻译人员:FireHare
校对人员:
适用版本:FOSCommentBundle 2.0.5
文章状态:草译阶段
The MongoDB implementation does not provide a concrete Vote class for your use,you must create one:
ROM实现并没有提供一个具体的Vote类给您使用,您需要创建一个:
<?PHP
// src/MyProject/MyBundle/Document/Vote.php
namespace MyProject\MyBundle\Document;
use Doctrine\ODM\MongoDB\Mapping\Annotations as MongoDB;
use FOS\CommentBundle\Document\Vote as BaseVote;
class Vote extends BaseVote
{
protected $id;
protected $comment;
}
And you should implement VotableCommentInterface in your Comment class and add a field to your mapping:
并且您需要在您的Comment类中实现 VotableCommentInterface 接口,并添加一个字段到您的映射中:
<?php
// src/MyProject/MyBundle/Document/Comment.php
namespace MyProject\MyBundle\Document;
use Doctrine\ODM\MongoDB\Mapping\Annotations as MongoDB;
use FOS\CommentBundle\Document\Comment as BaseComment;
use FOS\CommentBundle\Model\VotableCommentInterface;
class Comment extends BaseComment implements VotableCommentInterface
{
// .. fields
protected $score = 0;
public function setScore($score)
{
$this->score = $score;
}
public function getScore()
{
return $this->score;
}
public function incrementScore($by = 1)
{
$this->score += $by;
}
In YAML:
YAML格式:
# app/config/config.yml
fos_comment:
db_driver: mongodb
class:
model:
vote: MyProject\MyBundle\Document\Vote
Or if you prefer XML:
如果您偏好XML:
# app/config/config.xml
<fos_comment:config db-driver="mongodb">
<fos_comment:class>
<fos_comment:model
vote="MyProject\MyBundle\Document\Vote"
/>
</fos_comment:class>
</fos_comment:config>
Step 12: Enable voting.
第12步:启用投票。--结束END--
本文标题: FOSCommentBundle功能包:设置Doctrine ODM映射(投票)
本文链接: https://lsjlt.com/news/40613.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-10-23
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0