报错:
Catchable Fatal Error: Object of class AppEntityProjectType could not be converted to string
版本:symfony5.0
解决办法:
在对应のEntity里添加public __toString方法,我这里就是AppEntityProjectType类
// AppEntityProjectType
public function __toString(){
return strval($this->getId());
}
具体原因:可以 > 看这里 < | > 这里 <
babymonster