0
を働いていないスラグによる検索製品:Sylius、私が使用して、スラグによって製品をフィルタ処理しようとしている
$this->get('sylius.repository.product')->findOneBy(array('slug' => $slug));
は、私がfindByとfindOneBySlugを使用して試してみたが、それは常に製品が「持っていないことを言いますスラッグ」プロパティ:
Unrecognized field: slug
または
Entity 'Sylius\Component\Core\Model\Product' has no field 'slug'. You can therefore not call 'findOneBySlug' on the entities' repository
が、そのウェブサイト上の文書は、それが動作するはずの言葉: http://docs.sylius.org/en/latest/components_and_bundles/bundles/SyliusProductBundle/product.html
$product = $repository->findOneBy(array('slug' => 'my-super-product')); // Get one product by defined criteria.