Symfony2 - 在侧栏中设置标签云

问题描述 投票:0回答:2

我希望重新创建您通常在博客中看到的标签云侧边栏,用户在其中选择标签,然后它会显示具有该特定标签的所有帖子。

现在我无法确定如何设置查询。

我有一个查询来提取所有标签:

$blogTags = $this->createQueryBuilder('b')
        ->select('b.tags')
        ->getQuery()
        ->getResult();

    return $blogTags;

但是我如何将其设置为仅提取用户从侧边栏中的一组标签中选择的该标签的帖子?

我有存储标签并在侧边栏中对它们进行加权的代码,我正在寻找下一步将标签链接到其特定帖子。

获取标签()

public function getTags()
{
    $blogTags = $this->createQueryBuilder('b')
        ->select('b.tags')
        ->getQuery()
        ->getResult();

    $tags = array();

    foreach ($blogTags as $blogTag) {
        $tags = array_merge(explode(",", $blogTag['tags']), $tags);
    }

    foreach ($tags as $tag) {
        $tag = trim($tag);
    }

    return $tags;
}

getTagWeights()

public function getTagWeights($tags)
{
    $tagWeights = array();
    if (empty($tags))
        return $tagWeights;

    foreach ($tags as $tag)
    {
        $tagWeights[$tag] = (isset($tagWeights[$tag])) ? $tagWeights[$tag] + 1 : 1;
    }
    // Shuffle the tags
    uksort($tagWeights, function() {
        return rand() > rand();
    });

    $max = max($tagWeights);

    // Max of 5 weights
    $multiplier = ($max > 5) ? 5 / $max : 1;
    foreach ($tagWeights as &$tag)
    {
        $tag = ceil($tag * $multiplier);
    }

    return $tagWeights;
}
php symfony doctrine tags posts
2个回答
0
投票

与您朋友的答案相同(Symfony2 - 需要帮助设置教义查询以查找标签

您应该使用学说查询。

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();
}

0
投票

希望这可以帮助其他人避免在这方面花费大量时间。

public function getPostsByTags($tag)
{
    $query = $this->createQueryBuilder('b')
        ->where('b.tags like :tag')
        ->setParameter('tag', '%'.$tag.'%');

    return $query->getQuery()->getResult();
}
© www.soinside.com 2019 - 2024. All rights reserved.