In Symfony2, can the validation.yml file be split into multiple files using imports?(在 Symfony2 中,validation.yml 文件可以使用导入拆分成多个文件吗?)
问题描述
现在,我有一个名为 validation.yml 的文件,其中在一个文件中验证了捆绑包的所有实体.
Right now, I have a file called validation.yml with the validation of all the bundle's entities in one file.
validation.yml
validation.yml
BloggerBlogBundleEntityComment
properties:
username:
- NotBlank:
message: You must enter your name
- MaxLength: 50
comment:
- NotBlank:
message: You must enter a comment
- MinLength: 50
BloggerBlogBundleEntityEnquiry:
properties:
name:
- NotBlank: ~
email:
- Email:
message: symblog does not like invalid emails. Give me a real one!
subject:
- NotBlank: ~
- MaxLength: 50
body:
- MinLength: 50
但我想将其拆分为两个文件并将它们都导入.这是我尝试过的,但没有成功:
But I'd like to split it into two files and import them both. This is what I tried and it didn't work:
validation.yml
validation.yml
imports:
- { resource: comment.yml }
- { resource: enquiry.yml }
comment.yml
comment.yml
BloggerBlogBundleEntityComment
properties:
username:
- NotBlank:
message: You must enter your name
- MaxLength: 50
comment:
- NotBlank:
message: You must enter a comment
- MinLength: 50
enquiry.yml
enquiry.yml
BloggerBlogBundleEntityEnquiry:
properties:
name:
- NotBlank: ~
email:
- Email:
message: symblog does not like invalid emails. Give me a real one!
subject:
- NotBlank: ~
- MaxLength: 50
body:
- MinLength: 50
推荐答案
在 src/Blogger/BlogBundle/DependencyInjection/BloggerBlogExtension.php
的 load
方法中添加这些行.
Add these lines in load
method of src/Blogger/BlogBundle/DependencyInjection/BloggerBlogExtension.php
.
public function load(array $configs, ContainerBuilder $container)
{
//...
$yamlMappingFiles = $container->getParameter('validator.mapping.loader.yaml_files_loader.mapping_files');
$yamlMappingFiles[] = __DIR__.'/../Resources/config/comment.yml';
$yamlMappingFiles[] = __DIR__.'/../Resources/config/enquiry.yml';
$container->setParameter('validator.mapping.loader.yaml_files_loader.mapping_files', $yamlMappingFiles);
}
这篇关于在 Symfony2 中,validation.yml 文件可以使用导入拆分成多个文件吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Symfony2 中,validation.yml 文件可以使用导入拆分成多个文件吗?
基础教程推荐
- 超薄框架REST服务两次获得输出 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01