我在yii2-advanced app中使用wbraganca动态表单。我指的是 - wbraganca dynamic form - github作为教程;但我不明白他们在customerController中使用的'地址'字段是什么。我在这里分享它的截图 - screenshot。请参阅相应链接&截图&帮助我理解它。
答案 0 :(得分:0)
“地址”字段是Customer模型中与Address模型的关系。 Customer模型包含关系:
class Customer extends \yii\db\ActiveRecord
{
....
public function getAddresses()
{
return $this->hasMany(Address::className(), ['customer_id'=>'id']);
}
}
借助此窗口小部件,地址模型中的记录数会发生变化