如何设置cakephp编辑表单自定义URL?

时间:2011-05-26 18:25:02

标签: cakephp

HI,   我正在使用网址访问我的edit_view

/controller/action/group_id/id

但是当我检查我的动作时,它只是使用

/controller/action/id

我已尝试使用以下内容。

$params = array('url' => array('controller' => 'controller','action'=> 'action',$group_id,$id))
$this->form(model,$params)

$params = array('url' => '/controller/action/group_id/id')
$this->form(model,$params)

但它仍无效。

由于

1 个答案:

答案 0 :(得分:6)

不知道$this->form()是什么,但请尝试:

echo $this->Form->create('SomeModel', array(
  'url' => array(
    'controller' => 'controller', 
    'action' => 'action', 
    $param_1, 
    $param_2
    )
  ));