请帮助我,我是基本的Yii 2.当我尝试提供产品信息时,我得到了"试图获得非对象的属性"。 非常感谢你
答案 0 :(得分:0)
$product
为空,您需要检查actionView
中$ product是否为空,
public function actionView($id){
//Your Query
if(!$product)
throw new NotFoundHttpException('The Post is not exist.');
// $this-render …
}