将实体声明为另一个实体,获取要在产品类别上设置的类别名称

时间:2018-12-19 12:42:14

标签: php symfony4

我很困惑。

我有一个管理所有产品的ProductRepository.php,然后有一个category属性,应将其连接到CategoryRepository.php或类别实体。

这是我在ProductRepository.php中的代码

namespace App\Repository;

use App\Entity\Product;
use App\Entity\Category;
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
use Symfony\Bridge\Doctrine\RegistryInterface;

class ProductRepository extends ServiceEntityRepository
{
    public function __construct(RegistryInterface $registry)
    {
        parent::__construct($registry, Product::class);
    }

    public function transform(Product $product)
    {
        $category = Category($product->getCategory()); // error
        $category = $category->getName();

        return [
                'id'    => (int) $product->getId(),
                'name' => (string) $product->getName(),
                'category' => (int) $product->getCategory(),
                'category_name' => (string) $category,
                'SKU' => (string) $product->getSKU(),
                'price' => (float) $product->getPrice(),
                'quantity'    => (int) $product->getQuantity()
        ];
    }

我的问题,我在声明Category类时出错,对此有任何想法吗? 我的目标是从产品的category属性(即category name的{​​{1}}

中获取id

类别模型为:

category model

1 个答案:

答案 0 :(得分:0)

我想我了解您要做什么。

假设Product :: category是Product和Category类之间的关系:

 $categoryName = $product->getCategory()->getName();

您只需获取对象类别,然后获取其名称即可。