在 CakePHP 3 中保存 belongsToMany 关联
Saving belongsToMany associations in CakePHP 3
我在保存 belongsToMany 关联时遇到问题,保存的数据是现有实体和新实体的组合。
数据数组如下:
$data = [
'tags' => [
['label' => 'Some new tag'],
['label' => 'Another new tag'],
'_ids' => [1, 2]
]
];
难道这两种保存关联的方法不能同时使用?
我尝试创建一个数据数组,其中每个实体都是其自己的数组项,如下所示:
$data = [
'tags' => [
['label' => 'Some new tag'],
['label' => 'Another new tag'],
['id' => 1],
['id' => 2]
]
];
但是当它只是 id 时,这不会创建新的关联。我是否需要先处理新实体的创建,然后使用 ['_ids'] 方法创建关联,还是我的数据数组有问题?
从本次提交开始,现在可以使用秒 $data 数组结构 https://github.com/cakephp/cakephp/commit/0333639025780d2400b1888d0a2d1cab6c76d37a。
我在保存 belongsToMany 关联时遇到问题,保存的数据是现有实体和新实体的组合。
数据数组如下:
$data = [
'tags' => [
['label' => 'Some new tag'],
['label' => 'Another new tag'],
'_ids' => [1, 2]
]
];
难道这两种保存关联的方法不能同时使用?
我尝试创建一个数据数组,其中每个实体都是其自己的数组项,如下所示:
$data = [
'tags' => [
['label' => 'Some new tag'],
['label' => 'Another new tag'],
['id' => 1],
['id' => 2]
]
];
但是当它只是 id 时,这不会创建新的关联。我是否需要先处理新实体的创建,然后使用 ['_ids'] 方法创建关联,还是我的数据数组有问题?
从本次提交开始,现在可以使用秒 $data 数组结构 https://github.com/cakephp/cakephp/commit/0333639025780d2400b1888d0a2d1cab6c76d37a。