【发布时间】:2015-06-10 06:01:45
【问题描述】:
当我保存多个模型时,我无法将 Company.id 放入 License.company_id。我在许可证表中需要 company_id 的原因是公司拥有许可证,并将为其用户/员工分配许可证。
我有这些表:公司、用户和许可证。
许可证:belongsTo Company,hasMany User。
公司:hasMany 许可证,hasMany 用户。
用户:belongsTo Company,belongsTo License。
公司表:
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
)
)
【问题讨论】:
-
你能不能在
$this->User-create()之前写一个pr($this->request-data); -
我用输出更新了第一篇文章。我认为这是预期的(和想要的)。现在查询中缺少的是 [License][company_id]。
标签: php mysql cakephp cakephp-2.0