0
即時通訊創建一個頁面,當用戶添加一條消息到數據庫他們被帶回到他們的查看消息頁面(顯示頁面上的相關消息列表)。然而,當我點擊提交添加消息時,它也不會將參數也傳遞給URL。cakephp傳遞參數後形式
public function add_admin($id=null){
//allows user to add a new message to a dispute
$this->set('title_for_layout', 'Dispute Information');
$this->set('stylesheet_used', 'homestyle');
$this->set('image_used', 'eBOXLogoHome.png');
$this->layout='home_layout';
//gets messages where Message.dispute_id=$id
$dispute=$this->Message->field('dispute_id', array('dispute_id'=>$id));
//sets the variables
$this->set('dispute', $dispute);
//$sets the variable $user to User.id
$user=$this->Auth->User('id');
//sets the variable
$this->set('user',$user);
//if the request posts to the database
if($this->request->is('post')){
//create an instance of message in the database
$this->Message->create();
//if the message saves
if ($this->Message->save($this->request->data)) {
//redirect the user to Messages/viewMessage_admin
$this->redirect(array('controller' => 'Messages','action' => 'viewMessage_admin',$id));
}
}
$this->set('id',$id);
}
public function viewMessage_admin($id=null){
//allows users to view all messages related to a dispute
$this->set('title_for_layout', 'Dispute Information');
$this->set('stylesheet_used', 'homestyle');
$this->set('image_used', 'eBOXLogoHome.png');
$this->layout='home_layout';
$this->set('dispute_id',$id);
debug($id);
//find all messages where Message.dispute_id=$id
$Messages=$this->Message->find('all',array(
'conditions'=>array('dispute_id'=>$id)));
//find User details where user.id=message.user_id
$Username=$this->User->find('all', array(
'conditions'=>array(
'User.id'=>'Message.user_id')));
//get messages where message.dispute_id=$id
$dispute=$this->Message->field('dispute_id', array('dispute_id'=>$id));
//sets the variables
$this->set('dispute', $dispute);
$this->set('username', $Username);
$this->set('dispute_id',$id);
$this->set('message',$Messages);
}
這裏是我的形式
<table id="data">
<tr>
<th>Please add your message below.</th></tr>
<tr><td>
<?php echo $this->Form->create('Message', array('action'=>'add_admin')); ?>
<?php echo $this->Form->inpute('user_id', array('type'=>'hidden', 'value'=>$user)); ?>
<?php echo $this->Form->input('message',array('label'=>false)); ?>
</td></tr><tr><td>
<?php echo $this->Form->hidden('dispute_id', array('value' => $dispute)); ?>
<?php echo $this->Form->end('Submit'); ?></td></tr>
</table>
,抓住了message.id,我以後什麼message.dispute_id作爲參數 – user1393064