1
我在新的CakePHP和我的表從兩個表中的數據,如:如何獲取CakePHP中3
city
id | name
1 | city1
2 | city2
state
id | name | cityid
1 |state1| 2
那麼,如何讓城市的名字,如果我有狀態ID。 在控制器中我有這樣的代碼。
public function getCity()
{
if($this->request->is('ajax')) {
$this->autoRender = false;
}
if ($this->request->isPost()) {
$sId= $this->request->data['stateid'];
}
}
在$ sId我得到的價值,所以我如何寫查詢。
我認爲你應該閱讀https://book.cakephp.org/3.0/en/orm/associations.html第一個 – tarikul05
你做過城市和州模型之間的任何關聯嗎? –
是的,給它belongsTo –