php - 保存关联3个模型

标签 php mysql cakephp cakephp-2.0

当我保存多个模型时,我无法将 Company.id 放入 License.company_id 中。我在许可证表中需要company_id的原因是公司拥有许可证并将向其用户/员工分配许可证。

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

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

公司:hasMany 许可证,hasMany 用户。

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

公司表:

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'));
        }
    }
}

用户/register.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

关于php - 保存关联3个模型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29461117/

相关文章:

php - Laravel 中如何备份部分数据?

php - 如何动态设置从00 :00 in mySQL?开始的昨天日期

php - 使用 PHP 到 MySQL 日期时间格式

php - 为什么我没有从这个 php 文件中得到 XML 输出?

javascript - Bootstrap : hide glyphicon-time from datetimepicker

php - 在 CakePHP 中,您如何确定字段是否在编辑操作中被更改?

php - 防止在 Ajax 中提交表单

php - javascript/php 单引号

mysql - 我可以自动调整数据库中自增字段的值吗?

jquery - 将 css 加载到 Cake PHP 中