なぜ私のリレーショナル「非オブジェクトのプロパティを取得しようとしていますか?非オブジェクトのプロパティをrealtionalで取得しようとしています。
IモデルAdressDistrict任意のフィールドでAddressDistrict
public function getDestinationAddressDistrict(){
return $this->hasOne(\common\models\AddressDistrict::className(), ['id' => 'DISTRICT']);
}
をモデル化するhasOneの持つモデル先()を有する:ID、propinsi_id、NAMAコントローラにおいて
public function attributeLabels()
{
return [
'id' => 'ID',
'propinsi_id' => 'Propinsi ID',
'nama' => 'Nama',
];
}
を( actionIndex)モデルを取得します。目的地:
$modelDestination = new Destination;
と私はに渡すを作成し、私は私が$modelDestination->destinationAddressDistrict->id
を書く..and私は..すべてのソリューションを通知することを持っている_formで_form ...
に渡しますか?
あなたが作成した関係では、有効な値ではありません。 – scaisEdge