Validation in Zend Framework 2 with Doctrine 2(使用 Doctrine 2 在 Zend Framework 2 中进行验证)
问题描述
我现在对 Zend Framework 2 越来越熟悉,同时我也在更新 Zend Framework 2 中的验证部分.我见过几个示例如何使用 Zend 验证数据库中的数据dbadapter,例如来自Zend Framework 2官网的代码:
I am right now getting myself more and more familiar with Zend Framework 2 and in the meantime I was getting myself updated with the validation part in Zend Framework 2. I have seen few examples how to validate the data from the database using Zend Db adapter, for example the code from the Zend Framework 2 official website:
现在我的问题是如何进行验证部分?
Now my question is how can do the validation part?
例如,我需要在插入数据库之前验证名称以检查数据库中不存在相同的名称,我已经更新了 Zend Framework 2 示例相册模块以使用 Doctrine 2 与数据库通信,现在我想将验证部分添加到我的代码中.
For example, I need to validate a name before inserting into database to check that the same name does not exist in the database, I have updated Zend Framework 2 example Album module to use Doctrine 2 to communicate with the database and right now I want to add the validation part to my code.
假设在将专辑名称添加到数据库之前,我想验证数据库中不存在相同的专辑名称.
Let us say that before adding the album name to the database I want to validate that the same album name does not exist in the database.
任何有关这方面的信息都会非常有帮助!
Any information regarding this would be really helpful!
推荐答案
我遇到了同样的问题,是这样解决的:
I had the same problem and solved it this way:
- 创建一个自定义验证器类,将其命名为
NoEntityExists
(或您想要的任何名称). - 扩展
ZendValidatorAbstractValidator
- 为
DoctrineORMEntityManager
提供一个getter和setter - 为选项(实体名称,...)提供一些额外的 getter 和 setter
- 创建一个
isValid($value)
方法来检查记录是否存在并返回一个布尔值 - 要使用它,请创建它的新实例,分配
EntityManager
并像使用任何其他验证器一样使用它.
- Create a custom validator class, name it something like
NoEntityExists
(or whatever you want). - Extend
ZendValidatorAbstractValidator
- Provide a getter and setter for
DoctrineORMEntityManager
- Provide some extra getters and setters for options (entityname, ...)
- Create an
isValid($value)
method that checks if a record exists and returns a boolean - To use it, create a new instance of it, assign the
EntityManager
and use it just like any other validator.
要了解如何实现验证器类,请检查已经存在的验证器(最好是像 Callback
或 GreaterThan
这样简单的验证器).
To get an idea of how to implement the validator class, check the validators that already exist (preferably a simple one like Callback
or GreaterThan
).
希望能帮到你.
//对不起,我迟到了 ;-)
// Sorry, I'm late ;-)
这里有一个非常高级的例子,说明如何实现这样的验证器.
So here is a quite advanced example of how you can implement such a validator.
请注意,我添加了一个 translate()
方法,以便使用 PoEdit(一种从源代码中获取此类字符串并将它们放入列表中的翻译辅助工具)来捕获语言字符串.如果您没有使用 gettext()
,您可能可以跳过它.
Note that I added a translate()
method in order to catch language strings with PoEdit (a translation helper tool that fetches such strings from the source codes and puts them into a list for you). If you're not using gettext()
, you can problably skip that.
此外,这是我使用 ZF2 的第一批课程之一,我不会再将它放入 Application
模块中.也许,创建一个更适合的新模块,例如 MyDoctrineValidator
左右.
Also, this was one of my first classes with ZF2, I wouldn't put this into the Application
module again. Maybe, create a new module that fits better, for instance MyDoctrineValidator
or so.
这个验证器为您提供了很大的灵活性,因为您必须在使用它之前设置查询.当然,您可以预先定义查询并在选项中设置实体、搜索列等.玩得开心!
This validator gives you a lot of flexibility as you have to set the query before using it. Of course, you can pre-define a query and set the entity, search column etc. in the options. Have fun!
这篇关于使用 Doctrine 2 在 Zend Framework 2 中进行验证的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!