私はcakephpで1つのIDを選択してみます。私はこれを持っています:
public function start($id = null) {
$this->Round->id = $id;
}
ラウンドからproyect_idを取得しようとしています。ProyectとroundはBDで関係があります。私はこれを行いますが、機能しません:
public function start($id = null) {
$this->Round->id = $id;
$this->Round->Project->id
}
この:
public function start($id = null) {
$this->Round->id = $id;
$this->Round->project_id
}