Выходные реляционные данные в Yii2

Я пытаюсь вывести связанные данные в Yii2. Мой выходной код выглядит так (как я это делаю в Yii 1):

foreach ($model->comments as $key => $comment) {
echo $comment->title;
}

Но я получаю ошибку tying to get property on a non-object, var_dump из $model->comments показать массив, как выглядит:

    array (size=1)
0 =>
object(common\models\Comment)[74]
private '_attributes' (yii\db\BaseActiveRecord) =>
array (size=5)
'id' => int 1
'title' => string 'testComment' (length=11)
'body' => string 'body' (length=4)
'post_id' => int 1
'user_id' => int 1
private '_oldAttributes' (yii\db\BaseActiveRecord) =>
array (size=5)
'id' => int 1
'title' => string 'testComment' (length=11)
'body' => string 'body' (length=4)
'post_id' => int 1
'user_id' => int 1
private '_related' (yii\db\BaseActiveRecord) =>
array (size=0)
empty

var_dump of $model->getComments() вернуть объект ActiveQuery:

object(yii\db\ActiveQuery)[67]
public 'sql' => null
public 'on' => null
public 'joinWith' => null
public 'select' => null
public 'selectOption' => null
public 'distinct' => null
public 'from' => null
public 'groupBy' => null
public 'join' => null
public 'having' => null
public 'union' => null
public 'params' =>
array (size=0)
empty
private '_events' (yii\base\Component) =>
array (size=0)
empty
private '_behaviors' (yii\base\Component) =>
array (size=0)
empty
public 'where' => null
public 'limit' => null
public 'offset' => null
public 'orderBy' => null
public 'indexBy' => null
public 'modelClass' => string 'common\models\Comment' (length=21)
public 'with' => null
public 'asArray' => null
public 'multiple' => boolean true
public 'primaryModel' =>
object(common\models\Post)[65]
private '_attributes' (yii\db\BaseActiveRecord) =>
array (size=5)
'id' => int 1
'header' => string 'ds' (length=2)
'content' => string 'dsad' (length=4)
'created' => string '0000-00-00' (length=10)
'status' => int 1
private '_oldAttributes' (yii\db\BaseActiveRecord) =>
array (size=5)
'id' => int 1
'header' => string 'ds' (length=2)
'content' => string 'dsad' (length=4)
'created' => string '0000-00-00' (length=10)
'status' => int 1
private '_related' (yii\db\BaseActiveRecord) =>
array (size=0)
empty
private '_errors' (yii\base\Model) => null
private '_validators' (yii\base\Model) => null
private '_scenario' (yii\base\Model) => string 'default' (length=7)
private '_events' (yii\base\Component) =>
array (size=0)
empty
private '_behaviors' (yii\base\Component) =>
array (size=0)
empty
public 'link' =>
array (size=1)
'post_id' => string 'id' (length=2)
public 'via' => null
public 'inverseOf' => null

Я вижу свои данные в обоих случаях, но как я могу получить их из этой конструкции? (и как правильно использовать $ model-> getComments () или $ model-> comments?)

2

Решение

Надеюсь у тебя все хорошо !!!
Вам просто нужно сделать небольшую ревизию в вашем коде, которая приведена ниже

foreach ($model[0]->comments as $key => $comment) {
echo $comment->title;
}

Надеюсь, это сделает ваш день.

3

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]