表单(Forms) ============= Phalcon中提供了 :code:`Phalcon\Forms` 组件以方便开发者创建和维护应用中的表单。 下面的例子中展示了基本的使用方法: .. code-block:: php add(new Text("name")); $form->add(new Text("telephone")); $form->add( new Select( "telephoneType", array( 'H' => 'Home', 'C' => 'Cell' ) ) ); 可在表单定义时穿插使用表单元素的字义: .. code-block:: html+php

Contacts

render("name"); ?>

render("telephone"); ?>

render("telephoneType"); ?>

开发者可根据需要渲染HTML组件。 当使用render()函数时, phalcon内部会使用 :doc:`Phalcon\\Tag <../api/Phalcon_Tag>` 生成相应的html项, 第二个参数中可以对一些属性进行设置。 .. code-block:: html+php

render("name", array('maxlength' => 30, 'placeholder' => 'Type your name')); ?>

HTML的属性也可以在创建时指定: .. code-block:: php add( new Text( "name", array( 'maxlength' => 30, 'placeholder' => 'Type your name' ) ) ); 初始化表单(Initializing forms) -------------------------------- 从上面的例子我们可以看到表单项也可以在form对象初始化后进行添加。 当然开发者也可以对原有的Form类进行扩展: .. code-block:: php add(new Text("name")); $this->add(new Text("telephone")); $this->add( new Select( "telephoneType", TelephoneTypes::find(), array( 'using' => array( 'id', 'name' ) ) ) ); } } 由于 :doc:`Phalcon\\Forms\\Form <../api/Phalcon_Forms_Form>` 实现了 :doc:`Phalcon\\Di\\Injectable <../api/Phalcon_Di_Injectable>` 接口, 所以开发者可以根据自己的需要访问应用中的服务。 .. code-block:: php security->getToken(); } public function initialize() { // Set the same form as entity $this->setEntity($this); // Add a text element to capture the 'email' $this->add(new Text("email")); // Add a text element to put a hidden CSRF $this->add(new Hidden("csrf")); } } 相关的实体在初始化时添加到表单, 自定义的选项通过构造器传送: .. code-block:: php add(new Hidden('id')); } else { $this->add(new Text('id')); } $this->add(new Text('name')); } } 在表单实例中必须要这样使用: .. code-block:: php true ) ); 验证(Validation) ------------------ Phalcon表单组件可以和 :doc:`validation ` 集成,以提供验证。 开发者要单独为每个html元素提供内置或自定义的验证器。 .. code-block:: php addValidator( new PresenceOf( array( 'message' => 'The name is required' ) ) ); $name->addValidator( new StringLength( array( 'min' => 10, 'messageMinimum' => 'The name is too short' ) ) ); $form->add($name); 然后, 开发者可以根据用户的输入进行验证: .. code-block:: php isValid($_POST)) { foreach ($form->getMessages() as $message) { echo $message, '
'; } } 验证器执行的顺序和注册的顺序一致。 默认情况下,所有的元素产生的消息是放在一起的, 所以开发者可以使用简单的foreach来遍历消息, 开发者可以按照自己的意愿组织输出: .. code-block:: php getMessages(false) as $attribute => $messages) { echo 'Messages generated by ', $attribute, ':', "\n"; foreach ($messages as $message) { echo $message, '
'; } } 或获取指定元素的消息: .. code-block:: php getMessagesFor('name') as $message) { echo $message, '
'; } 过滤(Filtering) ----------------- 表单元素可以在进行验证前先进行过滤, 开发者可以为每个元素设置过滤器: 设置用户选项(Setting User Options) ------------------------------------ 表单与实体(Forms + Entities) ------------------------------ 我们可以把 model/collection/plain 设置到表单对象中, 这样 phalcon 会自动的设置表单元素的值: .. code-block:: php add(new Text("name")); $form->add(new Text("year")); 在表单渲染时如果表单项未设置默认值, phalcon会使用对象实体值作为默认值: .. code-block:: html+php render('name'); ?> 开发者可以使用下面的方式验证表单及利用用户的输入来设置值: .. code-block:: php bind($_POST, $robot); // Check if the form is valid if ($form->isValid()) { // Save the entity $robot->save(); } 也可以使用一个简单的类做为对象实体进行参数传递: .. code-block:: php add( new Select( "timezone", array( 'America/New_York' => 'New York', 'Europe/Amsterdam' => 'Amsterdam', 'America/Sao_Paulo' => 'Sao Paulo', 'Asia/Tokyo' => 'Tokyo' ) ) ); $form->add( new Select( "receiveEmails", array( 'Yes' => 'Yes, please!', 'No' => 'No, thanks' ) ) ); 实体中也可以使用getters, 这样可以给开发者更多的自由, 当然也会洽使开发稍麻烦一些,不过这是值得的: .. code-block:: php ` 命名空间下: +--------------+------------------------------------------------------------------------------------------+-------------------------------------------------------------------+ | 名称 | 描述 | 示例 | +==============+==========================================================================================+===================================================================+ | Text | 产生 INPUT[type=text] 项 | :doc:`Example <../api/Phalcon_Forms_Element_Text>` | +--------------+------------------------------------------------------------------------------------------+-------------------------------------------------------------------+ | Password | 产生 INPUT[type=password] 项 | :doc:`Example <../api/Phalcon_Forms_Element_Password>` | +--------------+------------------------------------------------------------------------------------------+-------------------------------------------------------------------+ | Select | 产生 SELECT tag (combo lists) 项 | :doc:`Example <../api/Phalcon_Forms_Element_Select>` | +--------------+------------------------------------------------------------------------------------------+-------------------------------------------------------------------+ | Check | 产生 INPUT[type=check] 项 | :doc:`Example <../api/Phalcon_Forms_Element_Check>` | +--------------+------------------------------------------------------------------------------------------+-------------------------------------------------------------------+ | Textarea | 产生 TEXTAREA 项 | :doc:`Example <../api/Phalcon_Forms_Element_TextArea>` | +--------------+------------------------------------------------------------------------------------------+-------------------------------------------------------------------+ | Hidden | 产生 INPUT[type=hidden] 项 | :doc:`Example <../api/Phalcon_Forms_Element_Hidden>` | +--------------+------------------------------------------------------------------------------------------+-------------------------------------------------------------------+ | File | 产生 INPUT[type=file] 项 | :doc:`Example <../api/Phalcon_Forms_Element_File>` | +--------------+------------------------------------------------------------------------------------------+-------------------------------------------------------------------+ | Date | 产生 INPUT[type=date] 项 | :doc:`Example <../api/Phalcon_Forms_Element_Date>` | +--------------+------------------------------------------------------------------------------------------+-------------------------------------------------------------------+ | Numeric | 产生 INPUT[type=number] 项 | :doc:`Example <../api/Phalcon_Forms_Element_Numeric>` | +--------------+------------------------------------------------------------------------------------------+-------------------------------------------------------------------+ | Submit | 产生 INPUT[type=submit] 项 | :doc:`Example <../api/Phalcon_Forms_Element_Submit>` | +--------------+------------------------------------------------------------------------------------------+-------------------------------------------------------------------+ 事件回调(Event Callbacks) --------------------------- 当扩展表单时, 我们可以在表单类中实现验证前操作及验证后操作: .. code-block:: html+php getMessagesFor($element->getName()); if (count($messages)) { // Print each element echo '
'; foreach ($messages as $message) { echo $message; } echo '
'; } echo '

'; echo ''; echo $element; echo '

'; } ?> 或是在登录表单中重用表单类: .. code-block:: php get($name); // Get any generated messages for the current element $messages = $this->getMessagesFor($element->getName()); if (count($messages)) { // Print each element echo '
'; foreach ($messages as $message) { echo $this->flash->error($message); } echo '
'; } echo '

'; echo ''; echo $element; echo '

'; } } 视图中: .. code-block:: php renderDecorated('name'); echo $element->renderDecorated('telephone'); 创建表单控件(Creating Form Elements) -------------------------------------- 除了可以使用phalcon提供的html元素以外, 开发者还可以使用自定义的html元素: .. code-block:: php forms->set('login', new LoginForm()); 使用唯一名, 我们可以在应用的任何地方访问到表单: .. code-block:: php forms->get('login')->render(); 外部资源(External Resources) ----------------------------- * `Vökuró `_ 是一个使用表单构建器来创建和维护表单的示例 [`Github `_]