0
我想將一個非表單相關按鈕放到註冊按鈕的視圖中,以將人們引導到控制器操作,但我仍然收到error500內部錯誤。任何想法我在這裏做錯了嗎?CakePHP表單操作按鈕
<?php
echo $this->Form->create('User');
echo $this->Session->flash();
echo $this->Form->input('username', array('label' => false, 'div' => false, 'class' => 'w-icon validate[required]'));
echo $this->Form->input('password', array('label' => false, 'div' => false, 'class' => 'w-icon validate[required]'));
echo $form->button('Register', array('type' => 'button', 'class' => 'button red tiny'));
echo $this->Form->submit('Login', array('class' => 'button blue tiny'));
echo $this->Form->end();
?>
感謝您的支持!我將如何使按鈕指向控制器/操作而不是提交按鈕? – medoix
按鈕不指向任何東西,它們提交表單。這就是HTML的工作原理。您可以使用鏈接轉到其他內容。 $ this-> Html-> link(...) – dogmatic69
final solution was echo $ this-> Form-> button('Register',array('onclick'=>「location.href ='/ register'」,' class'=>'button red tiny')); – medoix