Zend Framework 2 - Annotation Forms don#39;t work(Zend Framework 2 - 注释表单不起作用)
问题描述
感谢 @Hikaru-Shindo 我研究了 AnnotationForms
,这似乎是最好的可用作 ModelForms
的变通方法.但是示例显示 这里对我不起作用.
Thanks to @Hikaru-Shindo I looked into AnnotationForms
which seem to be the best available as a work-around for ModelForms
. But the example shown here doesn't work for me.
use ZendFormAnnotationAnnotationBuilder;
$builder = new AnnotationBuilder();
$form = $builder->createForm('User');
看着这段代码,我想知道 AnnotationBuilder
在哪里知道在哪里寻找这个用户表单.特别是因为在 def 形式的注释中有一个小写的 'user'
Looking at this code I wonder where the AnnotationBuilder
knows where to look for this user form. Especially because in the annotation in the form def there is a lowercase 'user'
@AnnotationName("user")
我将表单定义代码放入MyModule/Form/UserForm.php",将较低的代码放入我的控制器.这是正确的方法吗?
I put the form def code into 'MyModule/Form/UserForm.php' and the lower code into my Controller. Is this the right way?
推荐答案
这可能是用户实体的实体(和表单定义)(缩写版本):
This could be your entity (and form definition) for a user entity (shortend version):
namespace ApplicationEntity;
use DoctrineORMMapping as ORM;
use ZendFormAnnotation as Form;
/**
* @ORMEntity
* @ORMTable(name="application_user")
* @FormName("user")
* @FormHydrator("ZendStdlibHydratorObjectProperty")
*/
class User
{
/**
* @var int
* @ORMId @ORMColumn(name="id", type="integer")
* @ORMGeneratedValue
* @FormExclude()
*/
protected $id;
/**
* @var string
* @ORMColumn(name="user_name", type="string", length=255, nullable=false)
* @FormFilter({"name":"StringTrim"})
* @FormValidator({"name":"StringLength", "options":{"min":1, "max":25}})
* @FormValidator({"name":"Regex", "options":{"pattern":"/^[a-zA-Z][a-zA-Z0-9_-]{0,24}$/"}})
* @FormAttributes({"type":"text"})
* @FormOptions({"label":"Username:"})
*/
protected $username;
/**
* @var string
* @ORMColumn(name="email", type="string", length=90, unique=true)
* @FormType("ZendFormElementEmail")
* @FormOptions({"label":"Your email address:"})
*/
protected $email;
}
并使用这种形式:
use ZendFormAnnotationAnnotationBuilder;
$builder = new AnnotationBuilder();
$form = $builder->createForm('ApplicationEntityUser');
// Also possible:
// $form = $builder->createForm(new ApplicationEntityUser());
因此构建器需要定义类的完全限定名称.您使用注释设置的名称是用于创建表单的 id 属性的表单的名称.
So the builder needs the fully qualified name of your definition class. The name you set using the annotations is the name of the form used for example to create the form's id attribute.
如果你有一个 use 语句,你也可以取消命名空间:
If you have a use statement for it you could also abond the namespace:
use ZendFormAnnotationAnnotationBuilder;
use ApplicationEntityUser;
$builder = new AnnotationBuilder();
$form = $builder->createForm('User');
// Also possible:
// $form = $builder->createForm(new User());
这篇关于Zend Framework 2 - 注释表单不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Zend Framework 2 - 注释表单不起作用
基础教程推荐
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 使用 PDO 转义列名 2021-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01