我一直在寻找广泛但仍然无法找到如何设置查询以查找特定标签的示例'用户从侧边栏中选择,然后将显示带有该标签的所有帖子。
我了解如何查找所有标记,但不了解用户选择的特定标记。
blogrepository
public function getTags($tags)
{
$qb = $this->createQueryBuilder('b');
$qb->select('b')
->join('b.tags', 'tag')
->where('b.tags LIKE ?', '%'.$tags.'%');
return $qb->getQuery()->getResult();
}
博客实体
/**
* @var string
*
* @ORM\Column(name="tags", type="text")
*/
private $tags;
/**
* Set tags
*
* @param string $tags
* @return Blog
*/
public function setTags($tags)
{
$this->tags = $tags;
return $this;
}
/**
* Get tags
*
* @return string
*/
public function getTags()
{
return $this->tags;
}
答案 0 :(得分:2)
第一个解决方案:你应该使用一个学说查询。
<强> PostRepository.php 强>
public function findByTagName($tagName)
{
$qb = $this->createQueryBuilder('post');
$qb->select('post')
->join('post.tags', 'tag')
->where('tag.name LIKE ?', '%'.$tagName.'%');
return $qb->getQuery()->getResult();
}
第二个解决方案:使用多对多关系并直接从学说
获取<强>实体/ Tag.php 强>
/**
* @ORM\ManyToMany(targetEntity="YourApp\YourBundle\Entity\Post", inversedBy="tags")
* @ORM\JoinColumn(name="posts_tags")
*/
private $posts;
<强>实体/ post.php中强>
/**
* @ORM\ManyToMany(targetEntity="YourApp\YourBundle\Entity\Tag", mappedBy="posts")
*/
private $tags;
所以你可以$tag->getPosts();
获取所有相关帖子
第3个解决方案:真的很难看,但教程并没有改进...... 获取所有博客文章并解析每个字符串以查找您的标记是否在其中。
public function getBlogWithTag($tagRequested)
{
$blogs = $this->createQueryBuilder('b')
->getQuery()
->getResult();
$blogsWithTag = array();
$tags = array();
foreach ($blogs as $blog)
{
$tags = explode(",", $blog->getTags());
foreach ($tags as &$tag)
{
$tag = trim($tag);
}
if(in_array($tagRequested, $tags)) {
array_push($blogsWithTag, $blog);
}
}
return $blogsWithTag;
}
答案 1 :(得分:0)
我相信这对你有用。
public function getPostsByTags($tag)
{
$query = $this->createQueryBuilder('b')
->where('b.tags like :tag')
->setParameter('tag', '%'.$tag.'%');
return $query->getQuery()->getResult();
}