将重定向到 yii 中不同形式的按钮

button that would redirect to a different form in yii

我有一个 cListview,用户可以在其中 select 他们想要保留的东西,但是在选择这些东西之后,我需要一个按钮来重定向到另一个可以识别借款人信息的表单

问题是另一个表格位于不同的 controller/action 我怎样才能将按钮重定向到那里?

有人帮忙吗?

您可以在 url 中使用 Yii::app()->createUrl() 方法 - 在 CListView 中引用按钮。

 'buttons' => array(
                    'Say Something' =>array(
                    'url' => 'Yii::app()->createUrl("/controller/action/id/".$data->id)'
),             
    --options...  
 ),