在 Yii 中,以下内容不起作用(关系数组保持为空)并且不返回错误:
foreach ($data as $k => $relatedModelData){
//construct the related model from the data passed in
...
$model->arrayOfRelatedModels[] = $relatedModel;
}
相反,我必须这样做:
foreach ($data as $k => $relatedModelData){
//construct the related model from the data passed in
...
$tempArray[] = $relatedModel;
}
$model->arrayOfRelatedModels = $tempArray;
我想知道为什么会这样,或者我在第一个示例中是否有一些错误?