所以我有2个型号:插件和进口。 该协会是Plugins hasOne Imports:
$this->hasOne('Imports', [
'foreignKey' => 'plugin_id'
]);
和Imports belongsTo插件:
$this->belongsTo('Plugins', [
'foreignKey' => 'plugin_id',
'joinType' => 'INNER'
]);
我的插件表转储如下所示:
CREATE TABLE `plugins` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`type` varchar(50) NOT NULL,
`pluginkey` varchar(100) NOT NULL,
`pluginname` varchar(255) DEFAULT NULL,
`description` text,
`integrationinstructions` text,
`date_available` datetime DEFAULT NULL,
`date_last_changed` datetime DEFAULT NULL,
`author` varchar(255) DEFAULT NULL,
`version` varchar(10) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
我的导入表是:
CREATE TABLE imports (
id INT UNSIGNED AUTO_INCREMENT PRIMARY KEY,
plugintype VARCHAR(50) NOT NULL,
importedpluginkey VARCHAR(255) NOT NULL,
imported DATETIME NULL DEFAULT NULL,
plugin_id INT UNSIGNED NOT NULL,
FOREIGN KEY plugin_key (plugin_id) REFERENCES plugins(id)
);
现在我把两个控制器都烤了,一切正常。我可以保存导入(稍后将用于导入xml文件)并将其链接到插件。
但现在我想通过导入中添加的数据让Plugindata更新。
例如,假设我有一个名为“sale”的插件,其类型为Wordpress,密钥为“wp_sale”。现在我想通过添加导入来更新此插件。例如,更改它的描述或名称。
如果我理解this,我只需要在插件中传递我想要更改的数据。
但是当我检查要安全的patchEntity时,插件实体总是'[new]'=>是的,我通过的身份证已经消失了。
这就是我的控制器的样子:
public function add()
{
$import = $this->Imports->newEntity();
if ($this->request->is('post')) {
$import = $this->Imports->patchEntity($import, $this->request->data, ['associated' => ['Plugins']]);
if ($this->Imports->save($import)) {
$this->Flash->success(__('The import has been saved.'));
return $this->redirect(['action' => 'index']);
} else {
$this->Flash->error(__('The import could not be saved. Please, try again.'));
}
}
$plugins = $this->Imports->Plugins->find('list', ['limit' => 200]);
$this->set(compact('import', 'plugins'));
$this->set('_serialize', ['import']);
}
这就是我的表格:
echo $this->Form->input('plugintype');
echo $this->Form->input('importedpluginkey');
echo $this->Form->input('imported');
echo $this->Form->input('plugin_id', ['options' => $plugins]);
echo $this->Form->input('plugin.pluginkey');
echo $this->Form->input('plugin.type');
echo $this->Form->input('plugin.id', ['value' => 1]);
我为了测试而给了plugin.id值1,因为我想为插件传递一个id。
我的postdata看起来像这样:
[
'plugintype' => 'wordpress',
'importedpluginkey' => 'wp_sale',
'imported' => [
'year' => '2015',
'month' => '11',
'day' => '24',
'hour' => '10',
'minute' => '38'
],
'plugin_id' => '1',
'plugin' => [
'pluginkey' => 'wp_sale',
'type' => 'wordpress',
'id' => '1'
]
]
补丁实体看起来像这样:
object(App\Model\Entity\Import) {
'plugintype' => 'wordpress',
'importedpluginkey' => 'wp_sale',
'imported' => object(Cake\I18n\Time) {
'time' => '2015-11-24T11:04:00+0000',
'timezone' => 'UTC',
'fixedNowTime' => false
},
'plugin_id' => (int) 1,
'plugin' => object(App\Model\Entity\Plugin) {
'pluginkey' => 'wp_sale',
'type' => 'wordpress',
'[new]' => true,
'[accessible]' => [
'*' => true
],
'[dirty]' => [
'pluginkey' => true,
'type' => true
],
'[original]' => [],
'[virtual]' => [],
'[errors]' => [],
'[repository]' => 'Plugins'
},
'[new]' => true,
'[accessible]' => [
'*' => true
],
'[dirty]' => [
'plugintype' => true,
'importedpluginkey' => true,
'imported' => true,
'plugin_id' => true,
'plugin' => true
],
'[original]' => [],
'[virtual]' => [],
'[errors]' => [],
'[repository]' => 'Imports'
}
本网站上的许多问题都与协会保存有关。但我想要的是在导入模型中添加新数据时更新相关数据。
背后的原因是,我希望能够在不编辑所有插件的情况下更新我的插件,只需使用xml导入。
如果问题仍然不明确,请随时提出,我将进一步解释。提前谢谢!
编辑:要明确,我基本上需要使用导入控制器更改插件的数据。
我现在在另一个函数中获得了插件实体,我可以使用导入实体保存它。但是,它并没有改变插件中的任何内容,所以基本上什么都不做。
答案 0 :(得分:4)
链接文档中的示例似乎假设实体的设置方式允许主键被批量分配,请参阅
<强> Cookbook > Database Access & ORM > Entities > Mass Assignment 强>
默认情况下,烘焙实体不允许对主键进行批量分配,因此您必须注意这一点,例如通过patchEntitity()
选项覆盖字段可访问状态,例如
$import = $this->Imports->patchEntity(
$import,
$this->request->data,
[
'associated' => [
'Plugins' => [
'accessibleFields' => ['id' => true]
]
]
]
);
另请参阅 Cookbook > Database Access & ORM > Saving Data > Changing Accessible Fields
请注意,虽然实体仍将标记为“新”,但保存过程将(只要checkExisting
选项未设置为false
)测试是否具有给定的记录存在主键,如果必要,在继续之前将实体标记为“非新”,这样您最终将获得更新而不是插入。
另请参阅 Cookbook > Database Access & ORM > Saving Data > Saving Entities
答案 1 :(得分:0)
在这里添加dependent
,我认为它会起作用。
$this->hasOne('Imports', [
'foreignKey' => 'plugin_id',
'dependent' => true,
]);