$_accessible
键和值的db列的user_id
属性已从(int)0 => false
更改为'user_id' => true
,但我不知道如何或为什么。因此,表单数据中的user_id
将被忽略,并且不属于修补实体的一部分。
规格:Windows Server 2012(带有MySQL 8)上的CakePHP 3.7。
Warehouses实体最初是通过烘烤创建的,没有关联的user_id
,但带有关联的company_id
。填充company_id
后,我能够保存/编辑记录。然后,我将user_id字段手动添加到数据库以及所有相关的“仓库和用户”文件中。
我有验证逻辑,可以正确地确定是否填充了company_id
或user_id
。但是,由于$ {accessible属性上的user_id
字段已更改,因此当我尝试创建这样的记录时,将创建没有user_id值的记录。
我的应用程序中还有其他具有类似设置的表(table.id,table.jobs_id,table.onsite_id)运行良好,其中将填充job_id或将填充onsite_is。但是永远不要都为空或都填充。
数据库表:
CREATE TABLE `warehouses` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL,
`company_id` int(11) NOT NULL DEFAULT '0',
`user_id` int(11) NOT NULL DEFAULT '0',
`created` datetime NOT NULL,
`create_user` int(10) unsigned NOT NULL DEFAULT '0',
`modified` datetime NOT NULL,
`modify_user` int(10) unsigned NOT NULL DEFAULT '0',
`costed` tinyint(1) NOT NULL DEFAULT '0',
`deleted` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `id` (`id`,`name`,`deleted`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
WarehousesTable.php
public function initialize(array $config)
{
parent::initialize($config);
$this->setTable('warehouses');
$this->setDisplayField('name');
$this->setPrimaryKey('id');
$this->addBehavior('Timestamp');
$this->hasMany('Inventory', ['foreignKey' => 'warehouse_id']);
$this->belongsTo('Companies', ['foreignKey' => 'company_id']);
$this->belongsTo('Users', ['foreignKey' => 'user_id']);
}
Warehouse.php
protected $_accessible = [
'name' => true,
'company_id' => true,
'user_id' > true,
'created' => true,
'create_user' => true,
'modified' => true,
'modify_user' => true,
'costed' => true,
'deleted' => true,
'inventory' => true
];
UsersTable.php
public function initialize(array $config)
{
parent::initialize($config);
$this->setTable('users');
$this->setPrimaryKey('id');
$this->addBehavior('Timestamp');
$this->belongsTo('Companies');
$this->setDisplayField('full_name');
$this->hasMany('Uploads', ['foreignKey' => 'user_id']);
$this->hasMany('Warehouses', ['foreignKey' => 'user_id']);
}
add.ctp
<div class="warehouses form">
<?php echo $this->Form->create($warehouse);?>
<fieldset>
<legend>Add Warehouse</legend>
<?php
echo $this->Form->control('name');
echo $this->Form->control('what_needed', array('type' => 'radio', 'options' => ['0' => 'Internal', 'C' => 'Customer', 'T' => 'Field Tech'], 'label' => 'Warehouse for internal, Customer or Field Tech?'));
echo $this->Form->control('company_id', array('empty' => 'Select a company', 'options' => $companies, 'label' => 'Company'));
echo $this->Form->control('user_id', array('empty' => 'Select a user', 'options' => $users, 'label' => 'User'));
echo $this->Form->control('costed', array('label'=>'Is Warehouse Costed?'));
echo "</fieldset>";
?>
</fieldset>
<?php
echo $this->Form->button(__('Submit'));
echo $this->Form->end();
?>
</div>
在Warehouses控制器的add方法中,我调试了-> newEntity(),-> request-> getData()和-> patchEntity()。该信息如下。
在此先感谢您的帮助。非常感谢。
debug($warehouse = $this->Warehouses->newEntity());
object(App\Model\Entity\Warehouse) {
'[new]' => true,
'[accessible]' => [
'name' => true,
'company_id' => true,
(int) 0 => false, //*why is this false? what happened to user_id*
'created' => true,
'create_user' => true,
'modified' => true,
'modify_user' => true,
'costed' => true,
'deleted' => true,
'inventory' => true
],
'[dirty]' => [],
'[original]' => [],
'[virtual]' => [],
'[hasErrors]' => false,
'[errors]' => [],
'[invalid]' => [],
'[repository]' => 'Warehouses'
}
debug($this->request->getData());
[
'name' => 'Blah Blah Trunk',
'what_needed' => 'T',
'company_id' => '',
'user_id' => '5',
'costed' => '0'
]
debug($this->Warehouses->patchEntity($warehouse, $this->request->getData()));
object(App\Model\Entity\Warehouse) {
'name' => 'Blah Blah Trunk',
'costed' => false,
'create_user' => (int) 2,
'modify_user' => (int) 2,
'[new]' => true,
'[accessible]' => [
'name' => true,
'company_id' => true,
(int) 0 => false, //*why is this false? what happened to user_id*
'created' => true,
'create_user' => true,
'modified' => true,
'modify_user' => true,
'costed' => true,
'deleted' => true,
'inventory' => true
],
'[dirty]' => [
'name' => true,
'costed' => true,
'create_user' => true,
'modify_user' => true
],
'[original]' => [],
'[virtual]' => [],
'[hasErrors]' => false,
'[errors]' => [],
'[invalid]' => [],
'[repository]' => 'Warehouses'
}
答案 0 :(得分:0)
检查您的输入错误:'user_id'>是
protected $_accessible = [
'name' => true,
'company_id' => true,
'user_id' > true, // <---------- you have typo here, must be 'user_id' => true
'created' => true,
'create_user' => true,
'modified' => true,
'modify_user' => true,
'costed' => true,
'deleted' => true,
'inventory' => true
];
您可以使用一些脚本轻松检测代码中的错误,例如cakephp / cakephp-codesniffer,phpstan ..
composer require --dev cakephp/cakephp-codesniffer
composer require --dev phpstan/phpstan
composer require --dev phpstan/phpstan-deprecation-rules
添加您的作曲家脚本,例如:
"scripts": {
"cs-check": "phpcs --colors -p --ignore=*.js --standard=vendor/cakephp/cakephp-codesniffer/CakePHP config/ src/ plugins/ tests/",
"cs-fix": "phpcbf --colors --ignore=*.js --standard=vendor/cakephp/cakephp-codesniffer/CakePHP config/ src/ plugins/ tests/",
"phpstan": "./vendor/bin/phpstan analyse src plugins --level=0",
"test": "phpunit --colors=always"
},
从终端/控制台运行:
composer cs-check
用于检查代码样式错误composer cs-fix
用于快速修复一些代码样式错误composer phpstan
用于分析代码,从--level 0开始