yii2 hasone報錯的解決方法:先根據documentation開啟對應的檔案;然後修改語句為「function getUser(){return $this->hasOne(User::className...)}」即可。
yii2 有One關係工作錯誤
具體問題:
我有2個表:使用者和收藏者:
users table favorite
現在,我在「收藏」模型中建立瞭如下所示的關係
public function getUser() { return $this->hasOne(User::className(), ['id', 'user_favorited']); }
在控制器中,我找到了用戶收藏夾的清單
public function actionGetList() { $favorite = Favorite::find()->where([ 'user_favoriting' => Yii::$app->user->id ])->all(); foreach ($favorite as $key => $item) { # code... echo "<pre class="brush:php;toolbar:false">"; var_dump($item->user); echo "<br/>"; die('123'); } return $favorite; }
但是當我請求此操作時,我得到一個錯誤
Column not found: 1054 Unknown column '0' in 'where clause'\nThe SQL being executed was: SELECT * FROM `users` WHERE (`0`, `1`) IN ((12, 80))",
請幫我!
推薦:《yii教學》
解決方法:
根據documentation,您必須使用:
public function getUser() { return $this->hasOne(User::className(), ['id' => 'user_favorited']); }
以上是yii2 hasone 報錯怎麼辦的詳細內容。更多資訊請關注PHP中文網其他相關文章!