私は Zend を初めて使用し、何かを実行するボタンを備えた単純なページを作成したいと考えています。(多くのオンライン資料を読んでも)得られないのは、コントローラーで対応するアクションを作成する方法です。
次のビュー スクリプト index.phtml があります。
<?php
echo $this->button1
add.phtml という別のスクリプト:
<?php echo $this->json($this->data);
そしてコントローラー:
class blabla extends Zend_Controller_Action {
public function indexAction() {
$addButton = new Zend_Form_Element_Button("button",array('class' => 'btn_op', 'action'=>'add' , 'id' => 'addbtn')); //button
$addButton->setLabel("Add >>");
//$addButton->setAttrib('onclick', 'alert("Hello!")'); //not what I want
$this->view->button1 = $addButton->render(null);
}
public function addAction() {
echo 'I want my code to go here on click';
}
}
ありがとう :)