Yii 2对象错误

时间:2017-12-10 15:51:33

标签: yii yii2

Image 1

imgae 2

请帮助我,我是基本的Yii 2.当我尝试提供产品信息时,我得到了"试图获得非对象的属性"。 非常感谢你

1 个答案:

答案 0 :(得分:0)

$product为空,您需要检查actionView中$ product是否为空,

public function actionView($id){
//Your Query
if(!$product)
  throw new NotFoundHttpException('The Post is not exist.');
// $this-render … 
}