CakePHP 3.X多模型关联

时间:2017-03-22 13:21:14

标签: php cakephp save polymorphic-associations cakephp-3.x

目前我有帖子'和'用户'与附件相关联的模型'模型,一切都完美地运行,因为我需要在每个表单中放入一个隐藏的输入,告诉CakePHP我将使用哪个模型,就像下面的代码一样:

<?= $this->Form->create($post); ?>
<fieldset>
    <legend>Create a new Post</legend>

    <?php
        echo $this->Form->input('title');
        echo $this->Form->input('content');
        echo $this->Form->hidden('attachments.0.model', ['default' => 'Post']);
        echo $this->Form->control('attachments.0.image_url');
        echo $this->Form->hidden('attachments.1.model', ['default' => 'Post']);
        echo $this->Form->control('attachments.1.image_url');
    ?>
</fieldset>
<?= $this->Form->button(__('Save Post')); ?>
<?= $this->Form->end(); ?>

有没有办法告诉Cake我将使用哪个Attachment.model用于每个模型/控制器?或者这是正确的方法吗?

1 个答案:

答案 0 :(得分:1)

您可以使用相应的表类beforeSave和/或beforeMarshal事件/回调来修改与当前表(模型)相关的附件数据,即注入表(模型)名称。

根据您希望应用的内容,您只能使用它们(仅在/编组之前&gt;使用beforeMarshal,仅保存&gt;使用beforeSave),或者甚至两者都使用。

这是一个在编组和保存阶段无条件地注入当前表名的基本示例:

use Cake\Datasource\EntityInterface;
use Cake\Event\Event;

// ...

public function beforeMarshal(Event $event, \ArrayObject $data, \ArrayObject $options)
{
    if (isset($data['attachments']) &&
        is_array($data['attachments'])
    ) {
        $alias = $this->registryAlias();
        foreach ($data['attachments'] as &$attachment) {
            $attachment['model'] = $alias;
        }
    }
}

public function beforeSave(Event $event, EntityInterface $entity, \ArrayObject $options)
{
    $attachments = $entity->get('attachments');
    if (is_array($attachments)) {
        $alias = $this->registryAlias();
        foreach ($attachments as $attachment) {
            $attachment->set('model', $alias);
        }
    }
}

另见