gpt4 book ai didi

php - 这是在 zend 框架中制作表单的最佳方式

转载 作者:可可西里 更新时间:2023-11-01 00:52:32 25 4
gpt4 key购买 nike

可以通过将 zend_form 与装饰器、验证器、过滤器等一起使用来制作表单和表格( View ),我们也可以像往常一样直接在 View phtml 文件中编写 html 来完成此操作。我想知道就

而言,哪种方法最好
  1. 表现
  2. 时间
  3. 简单

我是 zend 框架的新手。

最佳答案

Performance

总是可以通过缓存、更好的机器来增加。

Time

只需了解您的 IDE,它会为您编写表单(宏、快捷方式、模板等)

Simplicity

Zend From使用再简单不过了。您甚至可以通过编写纯文本(ini 语法)来创建表单。


因此,较新的在 View 中创建表单。


最好的方法:

// application/modules/search/forms/Search.php

class Search_Form_Search extends Application_Form_Abstract
{
public function init()
{
$this->addElements(array(
// other elements here
new Zend_Form_Element_Submit('search_submit'),
));
}
}

在模型中:

// application/modules/search/models/Search.php

...
public function getForm()
{
return new Search_Form_Search();
}

关于php - 这是在 zend 框架中制作表单的最佳方式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4057462/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com