我下载并安装了SyliusTaxonomiesBundle,当我想创建分类时,我遇到以下问题:
FatalErrorException:错误:在/home/jeremy/web/vendor/sylius/taxonomies-bundle/Sylius/Bundle/TaxonomiesBundle/Model/Taxonomy.php第72行中调用非对象上的成员函数setName()< / p>
这个级别的问题,
public function setName($name)
{
$this->name = $name;
$this->root->setName($name);
return $this;
}
好像root不是TaxonInterface的对象。
您可以在此链接中看到模型文件:Taxonomy和Taxon: https://github.com/pjedrzejewski/SyliusTaxonomiesBundle/tree/v0.9.0/Model
非常感谢!!