0

こんにちは、人がアカウントを作成してからユーザーを作成する登録ページを作成しようとしています。アカウントは複数のユーザーを持つことができ、ユーザーは 0 個または 1 個のアカウントを持つことができます。現在のコードで発生している問題は、account_id が選択ボックスから読み込まれないことです。

ユーザーは 0 個または 1 個のアカウントを持つことができます アカウントは 1 個以上のユーザーを持つことができます

私のテーブルスキーマは

ユーザー -id, username, firstname, lastname アカウント - id, companyname accounts_users -id, account_id, user_id

アカウントモデル

<?php

class Account extends AppModel{

    var $name='Account';
    public $useTable = 'accounts';
    public $primaryKey = 'id';
    var $hasAndBelongsToMany = array(
        'User' =>
            array(
                'className'=>'User',
                )
            );

ユーザーモデル

 class User extends AppModel{ 

        public $name = 'User';
        public $useTable = 'users';
        public $primaryKey = 'id';
        var $hasAndBelongsToMany = array(
            'Account' =>
                array(
                    'className'=>'Account',
                    'joinTable'=>'accounts_users'
                    ));

add 関数はアカウント コントローラーです

function add(){
        $this->set('title_for_layout', 'Account registration');
        $this->set('stylesheet_used', 'style');
        $this->set('image_used', 'eBOXLogo.jpg');   

        if($this->request->is('post')){
            $this->Account->create(); 
            if ($this->Account->save($this->request->data)){
                $this->Session->setFlash('The user has been saved');
                $this->redirect( array('controller' => 'Users','action' => 'addAdmin'));
            }
            else{ 
                $this->Session->setFlash('The business could not be saved. Please, try again.');
                } 
        }
        }

ユーザーの addAdmin 関数

function addAdmin(){
    $this->set('title_for_layout', 'Please Login');
    $this->set('stylesheet_used', 'style');
    $this->set('image_used', 'eBOXLogo.jpg');   
if($this->request->is('post')){
$this->User->create(); 
$this->set('accounts', $this->User->Account->find('list'));
if ($this->User->save($this->request->data)) 
{ 
    $this->Session->setFlash('The user has been saved');  
    $this->redirect( array('controller'=>'Users','action' => 'login')); 
}
else { $this->Session->setFlash('The user could not be saved. Please, try again.'); } 
} 

}

addAdmin フォーム

<h2>Welcome please add your Administrator Details</h2>
<?php
echo $this->Form->create('User', array('action'=>'add'));
echo $this->Form->input('Account');
echo $this->Form->input('username',array('label'=>'Username: '));
echo $this->Form->input('password',array('label'=>'Password: '));
echo $this->Form->input('password_confirmation',array('type'=>'password'));
echo $this->Form->input('email',array('label'=>'Email: '));
echo $this->Form->input('title',array('label'=>'Title: '));
echo $this->Form->input('firstname',array('label'=>'First Name: '));
echo $this->Form->input('surname',array('label'=>'Surname: '));
echo $this->Form->input('street',array('label'=>'Street Address: '));
echo $this->Form->input('city',array('label'=>'City: '));
echo $this->Form->input('state',array('label'=>'State: '));
echo $this->Form->input('country',array('label'=>'Country: '));
echo $this->Form->input('access_level', array('default' => 2));
echo $this->Form->end('Add Administrator');

?>
4

1 に答える 1

1

コメントで述べたように、エラーは明確に説明されていません。これが最初の答えです。答えが更新された場合は、更新/修正します。

エラーはコントローラーにある可能性があります。

function addAdmin(){
$this->set('title_for_layout', 'Please Login');
$this->set('stylesheet_used', 'style');
$this->set('image_used', 'eBOXLogo.jpg');  

if($this->request->is('post')){
$this->User->create(); 
$this->set('accounts', $this->User->Account->find('list'));//this line is wrong
if ($this->User->save($this->request->data)) 
{ 
    $this->Session->setFlash('The user has been saved');  
    $this->redirect( array('controller'=>'Users','action' => 'login')); 
}
else { $this->Session->setFlash('The user could not be saved. Please, try again.'); } 
} 

set関数は、ifの背後に隠されているとは限りません。試す:

 function addAdmin(){
$this->set('title_for_layout', 'Please Login');
$this->set('stylesheet_used', 'style');
$this->set('image_used', 'eBOXLogo.jpg');   
$this->set('accounts', $this->User->Account->find('list'));//moved

if($this->request->is('post')){
$this->User->create(); 
if ($this->User->save($this->request->data)) 
{ 
    $this->Session->setFlash('The user has been saved');  
    $this->redirect( array('controller'=>'Users','action' => 'login')); 
}
else { $this->Session->setFlash('The user could not be saved. Please, try again.'); } 
}
于 2012-08-03T16:02:23.437 に答える