saveAssosiated with 3 models


saveAssosiated with 3 models

当我保存多个模型时,我无法将Company.id获取到License.Company_id中。我在许可证表中需要Company_id的原因是公司拥有许可证,并将许可证分配给他们的用户/员工。

我有以下表格:公司、用户和许可证。

许可证:属于公司,拥有众多用户。

公司:hasMany License,hasMany User。

用户:归属公司,归属许可证。

公司表:

id
name

用户表:

id
company_id
license_id
email
password

许可证表:

id
company_id

UsersController.php

public function register() {
    $expires = date("Y-m-d H:i:s", strtotime("+30 days"));
    $this->set('expires', $expires);
    if ($this->request->is('post')) {
        $this->request->data['User']['language'] = 'nor';
        $this->request->data['User']['role'] = 'admin';
        $this->request->data['User']['active'] = '1';
        $this->User->create();
        if ($this->User->saveAssociated($this->request->data, array('deep' => true))) {
            $this->Session->setFlash(__('The user has been saved.'), 'default', array('class' => 'notice success'));
            return;// $this->redirect(array('controller' => 'landing', 'action' => 'index'));
        } else {
            $this->Session->setFlash(__('The user could not be saved. Please, try again.'), 'default', array('class' => 'notice error'));
        }
    }
}

用户/寄存器.ctp

<?php echo $this->Form->create('User', array('controller' => 'users', 'action' => 'register')); ?>
<?php
    echo $this->Form->input('Company.name', array('placeholder' => __('Company')));
    echo $this->Form->input('name', array('placeholder' => __('Name')));
    echo $this->Form->input('email', array('class' => 'form-control', 'placeholder' => __('E-mail')));
    echo $this->Form->input('mobile', array('placeholder' => __('Mobile number')));
    echo $this->Form->input('password', array('placeholder' => __('Password')));
    echo $this->Form->input('License.product_id', array('type' => 'hidden', 'value' => '1'));
    echo $this->Form->input('License.amount', array('type' => 'hidden', 'value' => '2'));
    echo $this->Form->input('License.renewal', array('type' => 'hidden', 'value' => '0'));
    echo $this->Form->input('License.expires', array('type' => 'hidden', 'value' => $expires));
?><?php echo $this->Form->end(__('Submit')); ?>

编辑:我在另一个模型(公司)中也尝试过同样的代码。User.license_id保存正确,但Lisence.company_id没有。

这是我在$This->User-create():之前得到的

    Array
(
    [Company] => Array
        (
            [name] => Company AS
        )
    [User] => Array
        (
            [name] => Ola Nordmann
            [email] => ola@nordmann.no
            [mobile] => 99229922
            [password] => qwertyui
            [language] => nor
            [role] => admin
            [active] => 1
        )
    [License] => Array
        (
            [product_id] => 1
            [amount] => 2
            [renewal] => 0
            [expires] => 2015-05-05 23:39:10
        )
)

目前,它正在保存一个用户及其关联的公司,以及一个用户与其关联的许可证。您的代码中没有任何内容表明许可证和公司之间应该存在直接关联。

一家公司可以拥有多个许可证。在这种数据格式中,CakePHP如何知道您打算将此特定用户许可证也属于他们的公司?

话虽如此,你可能需要将其分解为不同的扑救。

在我的脑海中,我可能只保存用户的数据,然后保存公司的相关许可证。因为此时已经有了user_id,所以可以在要保存的数据中包括预先填充的Company.user_idLicense.0.user_id字段。

// pseudo code:
// Save User via the User model
// get User's new id based on the just-created row
// Create data array from data passed by user and just-retrieved user_id
// save Company via the Company model including it's associated License

现在我有一种方法可以做到这一点,但我不知道是否还有其他更简单更好的方法可以做到。

这是我的代码:https://gist.github.com/sjundee/2683820962ab24047bb8.

在register()函数中,我首先在Companies,Users and Licenses中保存新记录,但由于License.company_id没有保存,我用$this->User->Company->id更新License.company_id,这将获得我保存到Companies中的行id。