gpt4 book ai didi

mysql - CakePHP 3 - 1054 找不到列

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

我有两个表:cars 和 car_types。汽车“hasOne”类型和类型“hasMany”汽车。我已经在我的模型中定义了这个约束,但是我怎样才能读取我的 Controller 或 View 中的值而不会收到如下错误消息?

Mysql错误信息:

"Error: SQLSTATE[42S22]: Column not found: 1054 Unknown column 'CarTypes.type_id' in 'on clause'"

当我在我的 CarsController 中执行此操作时出现此错误:

public function index() {
$query = $this->Cars->find('all', ['contain' => [
'CarTypes'
]]);

debug($query->toArray());
}

汽车表:

id - type_id - method_id

Car_types 表:

id - type

CarTypes 模型:

 public function initialize(array $config)
{
parent::initialize($config);

$this->setTable('car_types');
$this->setDisplayField('id');
$this->setPrimaryKey('id');

$this->hasMany('Cars', [
'foreignKey' => 'type_id'
]);
}

汽车型号:

public function initialize(array $config)
{
parent::initialize($config);

$this->setTable('cars');
$this->setDisplayField('id');
$this->setPrimaryKey('id');

$this->hasOne('CarTypes', [
'className' => 'Cars.CarTypes',
'foreignKey' => 'type_id',
'propertyName' => 'type'
]);
}

最佳答案

父表 (CarTypes) 中的一条记录可能有多个子记录(在 Cars 表中),因此关系很好,如 hasMany。但是,子记录(在 Cars 表中)应该属于一个CarType,而不是有一个CarType

本质上,has 是父 -> 子关系,而 belongs 是子 -> 父关系(详见 cakephp documentation on associations)。因此,在 Cars 中将 hasOne 更改为 belongsTo:

public function initialize(array $config)
{
parent::initialize($config);

$this->setTable('cars');
$this->setDisplayField('id');
$this->setPrimaryKey('id');

$this->belongsTo('CarTypes', [
'className' => 'CarTypes',
'foreignKey' => 'type_id',
'propertyName' => 'type'
]);
}

在这种情况下,CakePHP 将在 Cars 表中查找 type_id 字段,而不是在 CarTypes 表中。

关于mysql - CakePHP 3 - 1054 找不到列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42580463/

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