我正在使用Symfony和Doctrine(我不是专家)我正在创建一个代码来处理我的Mysql数据库
/**
* TcCourse
*
* @ORM\Table(name="tc_course")
* @ORM\Entity
*/
class TcCourse
{
/**
* @var integer
*
* @ORM\Column( type="integer", nullable=false)
* @ORM\Id
* @ORM\GeneratedValue(strategy="IDENTITY")
*/
private $id;
但是,当我尝试使用Controller运行源代码时,我获得了:
Property AppBundle\Entity\TcCourse::$userid does not exist
$ userid是我之前发布的$ id属性 我停止服务器并启动服务器n次,因为我非常确定代码是否正常
php app/console server:start
php app/console server:stop
我总是得到同样的错误
我找到了一个使用它的解决方案(因为代码没问题)
php bin/console cache:clear
为了避免出现这种问题,您对服务器缓存的建议是什么?