事先道歉 - 這裏有一個symfony業餘愛好者的繼承項目。無法在symfony 1.0.17中傳遞參數
我已經添加了以下內容的應用程序/前端/模塊/頂/模板/ indexSuccess.php的:
<?php echo form_tag('contents/'.$adv_data->getId()) ?>
<?php echo $sf_params->get('email'); ?>
<?php echo input_tag('email', $sf_params->get('email'))?>
<?php echo submit_tag('Next') ?>
</form>
於是我以下內容添加到應用程序/前端/模塊/頂/動作/動作在executeContents()方法中的.class.php:
$email = $this->getRequestParameter('email');
$this->getRequest()->setParameter('email', $email);
if (!$this->validateForm()) {
$this->redirect($adv_id); // sends me back to the page with the form up above
}
我希望電子郵件參數出現,但可惜它沒有。
參數,你不住嗎?
真棒!正是我需要知道的。非常感謝你。 – blurmy23 2011-04-10 20:49:42