2

私はCakePHP2.xで働いています

現在、私のアプリでは、ユーザーは任意のユーザーとして何かを追加することを選択できます。「user_id」として自分のIDを持つように強制したいと思います。User_idは外部キーであり、ACL、Authを使用しています。$ this-> Data => $ this-> auth-> user('id);を使用して、コントローラーにデータを設定しようとしました。しかし、値を設定するために継ぎ目はありません。

Cakephpビューを追加:

<?php echo $this->Form->create('Asset'); ?>
<fieldset>
    <legend><?php echo __('Add Asset'); ?></legend>
<?php
    echo $this->Form->input('asset_name');
    echo $this->Form->input('description');
    echo $this->Form->input('vaule');
    echo $this->Form->input('date_bought');
    echo $this->Form->input('date_freehold');
    echo $this->Form->input('user_id');
?>
</fieldset>
<?php echo $this->Form->end(__('Submit')); ?>

ケーキPHPコントローラー:

public function add() {
    if ($this->request->is('post')) {
        $this->Asset->create();
        if ($this->Asset->save($this->request->data)) {
                        $this->data['Assets']['user_id'] = $this->Auth->user('id');
            $this->Session->setFlash(__('The asset has been saved'));
            $this->redirect(array('action' => 'index'));
        } else {
            $this->Session->setFlash(__('The asset could not be saved. Please, try again.'));
        }
    }
    $users = $this->Asset->User->find('list');
    $this->set(compact('users'));
}

Cake Phpモデル:

class Asset extends AppModel {

/**
 * Validation rules
 *
 * @var array
 */
public $validate = array(
    'asset_name' => array(
        'notempty' => array(
            'rule' => array('notempty'),
            //'message' => 'Your custom message here',
            //'allowEmpty' => false,
            //'required' => false,
            //'last' => false, // Stop validation after this rule
            //'on' => 'create', // Limit validation to 'create' or 'update' operations
        ),
    ),
    'date_bought' => array(
        'date' => array(
            'rule' => array('date'),
            //'message' => 'Your custom message here',
            //'allowEmpty' => false,
            //'required' => false,
            //'last' => false, // Stop validation after this rule
            //'on' => 'create', // Limit validation to 'create' or 'update' operations
        ),
    ),
    'user_id' => array(
        'numeric' => array(
            'rule' => array('numeric'),
            //'message' => 'Your custom message here',
            //'allowEmpty' => false,
            //'required' => false,
            //'last' => false, // Stop validation after this rule
            //'on' => 'create', // Limit validation to 'create' or 'update' operations
        ),
    ),
);

//The Associations below have been created with all possible keys, those that are          not needed can be removed

/**
 * belongsTo associations
 *
 * @var array
 */
public $belongsTo = array(
    'User' => array(
        'className' => 'User',
        'foreignKey' => 'user_id',
        'conditions' => '',
        'fields' => '',
        'order' => ''
    )
);
}

これをどのように、どこで行うかが100%わからないので、助けてくれる人は大いに感謝します。

4

1 に答える 1

3

これが私がそれを行う方法です、それは少し少ないコードなので投稿する価値があるかもしれないと思いました。

// in AppController
function beforeFilter() {
    // setup auth here
    ...
    $this->set('authUser', $this->Auth->user());
    ...
}

// in Add view's form
...
echo $this->Form->hidden('user_id', array('value'=>$authUser['id']));
...
于 2012-11-29T07:06:46.477 に答える