1

私はこの問題を理解しようと多くの時間を費やしましたが、運がありませんでした。ルーティングを試みましたが成功しませんでした。最初にロジックを配置し、次にコードを配置します。

  1. ユーザーは/pra/ Fields / view / 1にいて、fields.template_id=1のフィールドのリストを確認しています。
  2. ユーザーは、[新しいフィールドの追加/ pra / Fields / add_new / 1]をクリックすると、作成した新しいフィールドに関する必要な情報を入力するフォームが表示されます。
  3. ユーザーが追加/送信をクリックすると、新しいフィールドがデータベースに保存されます
  4. ユーザーは/pra/ Fields / view / 1に戻り、テンプレートに追加された新しいフィールドを確認できます。

現在、最初の3つのステップが実行されてい/pra/Fields/view/1ますが、にリダイレクトする場合、ユーザーはにリダイレクトされます。/pra/Fields/view/

これがadd_new関数のコードです

function add_new($id=null){
    //allows users to add another field to an existing template
    $this->set('title_for_layout', 'Create Fields');
    $this->set('stylesheet_used', 'homestyle');
    $this->set('image_used', 'eBOXLogoHome.png');
    $this->layout='home_layout';
    $name=$this->Field->field('template_id', array('template_id'=>$id));
    //if the field data saves
    $this->set('name',$name);
    if(($this->Field->save($this->data)))
    {   
        //user is redirected to fields/view/$name
        $this->redirect(array('controller'=>'Fields', 'action'=>'view',$name));
    }
    //sets the $id variable
    $this->set('id',$id);

これがadd_newビューです

<table id="formatform">
        </br></br>
        <?php
            $options = array('Money'=>'Money','Text'=>'Text','Description'=>'Description');
            ?>
        <?php echo $this->Form->create('Field', array('action'=>'add_new')); ?>
        <?php echo $this->Form->input('id',array('type'=>'hidden')); ?>
                <tr>
                <td></td>
                <td><?php echo $this->Form->input('template_id',array('type'=>'hidden','default' => $id)); ?></td>
                </tr>

                <tr>
                <td align='center'>Field Name:</td>
                <td align='left'><?php echo $this->Form->input('name', array('label'=>false)); ?></td>
                </tr>

                <tr>
                <td align='center'>Default Value:</td>
                <td align='left'><?php echo $this->Form->input('default_value', array('label'=>false)); ?></td>
                </tr>
                <tr>
                <td align='center'>Field Type:</td>
                <td align='left'><?php echo $this->Form->input('field_type', array('label'=>false,'type'=>'select','options'=>$options)); ?></td>
                </tr>

                <tr>
                <td align='center'>Description:</td>
                <td align='left'><?php echo $this->Form->input('description', array('label'=>false)); ?></td>
                <td><?php echo $this->Form->input('active', array('type'=>'hidden','default'=>true)); ?></td>
                </tr>




    <td></td>   <td align = "left"><?php echo $this->Form->end('Submit');?></td>

これがビュー関数コードです

function view($name){
    //lists information about fields that correspond to the
    //template they have clicked 'view' on
    $this->set('title_for_layout', 'Field Details');
    $this->set('stylesheet_used', 'homestyle');
    $this->set('image_used', 'eBOXLogoHome.png');
    $this->layout='home_layout';
    //sets $conditions where template_id=$name and field.active=true
    $conditions=array(
        "AND"=>array(
        'template_id'=> $name,
        'Field.active'=>true));
    //finds all fields where 'conditions'=$conditions
    $fields = $this->Template->Field->find('all',array( 
        'conditions' => $conditions));
    //sets all the variables      
    $this->set('conditions', $conditions);
    $this->set('field', $fields);
    $this->set('field', $this->paginate('Field', $conditions));  


}
4

2 に答える 2

0

ここで問題が発生する可能性があります。

function add_new($id=null){
    //allows users to add another field to an existing template
    $this->set('title_for_layout', 'Create Fields');
    $this->set('stylesheet_used', 'homestyle');
    $this->set('image_used', 'eBOXLogoHome.png');
    $this->layout='home_layout';

$nameが空でないかどうかを確認します

$name = $this->Field->field('template_id', array('template_id'=>$id)); 
if(!empty($name)){
    $this->set('name',$name);
    if(($this->Field->save($this->data)))
    {   
        //user is redirected to fields/view/$name
        $this->redirect(array('controller'=>'Fields', 'action'=>'view',$name));
    }
}

コードの残りの部分

//sets the $id variable
$this->set('id',$id);
于 2012-09-25T14:30:02.920 に答える
0
function add_new($id=null){
    //allows users to add another field to an existing template
    $this->set('title_for_layout', 'Create Fields');
    $this->set('stylesheet_used', 'homestyle');
    $this->set('image_used', 'eBOXLogoHome.png');
    $this->layout='home_layout';
    $this->set('id',$id);

    if(($this->Field->save($this->data)))
    {

    $id = $this->data['Field']['template_id'];

    $this->set('id',$id);
    $this->redirect(array('controller'=>'Fields', 'action'=>'view',$id));

    }
    }
于 2012-09-26T01:41:41.220 に答える