gpt4 book ai didi

php - 在 cakephp 3 中创建适当的关联

转载 作者:行者123 更新时间:2023-11-29 06:57:05 25 4
gpt4 key购买 nike

我想在两个表之间创建正确的关系。这样,当我从 lease 表获取数据时,我也能够获取 price 表数据。价格表可以有多个lease表id。

表的结构是

租赁表

enter image description here

价格表

enter image description here

其中 lease 表的 id 与价格表的 lease_id 相关。

我尝试使用以下代码但无法获取数据。

class LeasesTable extends Table {

/**
* Initialize method
*
* @param array $config The configuration for the Table.
* @return void
*/
public function initialize(array $config) {
parent::initialize($config);

$this->table('leases');

$this->primaryKey('id');

$this->addBehavior('Timestamp');

$this->belongsTo('Offices', [
'foreignKey' => 'office_type',
'joinType' => 'INNER'
]);
$this->belongsTo('Countries', [
'foreignKey' => 'country_id',
'joinType' => 'INNER'
]);
$this->belongsTo('Areas', [
'foreignKey' => 'area_id',
'joinType' => 'INNER'
]);
$this->belongsToMany('id', [
'foreignKey' => 'lease_id',
'joinType' => 'INNER',
'joinTable' => 'Prices',
]);
}

最佳答案

您描述的关联是租赁有许多价格 - 因此您应该在 LeasesTable.php 中使用以下代码:

$this->hasMany("Prices", [
"foreignKey" => "lease_id"
]);

更多信息:HasMany Associations

关于php - 在 cakephp 3 中创建适当的关联,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45142898/

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