Cakephp 2.3.1 を使用し、formhelper でフォームを作成しようとしています。
これは私の addStudent.ctp です:
<?php
$this->Form->create("Test");
$this->Form->input("stuId",array('class'=>'inputField', 'placeholder'=>'SVxxxxxxxx'));
$this->Form->input("stuName",array('class'=>'inputField', 'name'=>'stuName'));
$this->Form->input('submit',array('type'=>'submit'));
$this->Form->end();
?>
私はすでに追加しました: var $helpers= array('Form'); AppController で。しかし、何も表示されませんか?ここで何が問題なのですか:(