您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關yii2中hasone報錯的解決方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
yii2 hasone報錯的解決辦法:首先根據documentation打開相應的文件;然后修改語句為“function getUser(){return $this->hasOne(User::className...)}”即可。
yii2 hasOne關系工作錯誤
具體問題:
我有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>"; 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))",
請幫我!
解決方法:
根據documentation,您必須使用:
public function getUser() { return $this->hasOne(User::className(), ['id' => 'user_favorited']); }
關于“yii2中hasone報錯的解決方法”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。