gpt4 book ai didi

mysql - 如何从 cakephp 3 中的两个表中获取数据

转载 作者:行者123 更新时间:2023-11-30 21:52:40 24 4
gpt4 key购买 nike

我是 cakephp 的新手,我的表是这样的:

city
id | name
1 | city1
2 | city2

state
id | name | cityid
1 |state1| 2

那么,如果我有州 ID,我该如何获取城市名称。 在 Controller 中,我有这样的代码。

public function getCity()
{
if( $this->request->is('ajax') ) {
$this->autoRender = false;
}

if ($this->request->isPost()) {
$sId= $this->request->data['stateid'];
}
}

在 $sId 中我得到了值,所以我该如何编写查询。

最佳答案

如果两个模型之间有 BelongsTo 关系,则只需对包含 City 的 States 进行查询:

public function getCity()
{
if( $this->request->is('ajax') ) {
$this->autoRender = false;
}

if ($this->request->isPost()) {
$stateEntity = $this->States->find('all')
->where(['id' => $this->request->data['stateid']])
->contain(['Cities'])
->first();
// Now the State Object contains City
$cityName = $stateEntity->city->name;
}
}

要创建这种关系,您需要这样做:

class StatesTable extends Table
{

public function initialize(array $config)
{
$this->belongsTo('Cities')
->setForeignKey('city_id')
->setJoinType('INNER');
}
}

关于mysql - 如何从 cakephp 3 中的两个表中获取数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46558060/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com