Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在其他操作(无表单)上使用带有“提交”的 CHtml::button,它显示了页面,但是当我单击 BACK 然后单击 NEXT 时,它显示 Document Expired
<?php echo CHtml::button('title', array('submit' => array('/'.$_GET['id'].'/smthing/profile'))); //)?>
尝试从 POST 更改为 GET,例如活动表单:
$form = $this->beginWidget('CActiveForm', array( 'action' => '/', 'method' => 'get', 'enableClientValidation' => true, 'clientOptions' => array( 'validateOnSubmit' => true, ), )); echo Chtml::submitButton('Submit'); $this->endWidget();