m6web/fos-rest-extra-bundle
最新稳定版本:v4.0.0
Composer 安装命令:
composer require m6web/fos-rest-extra-bundle
包简介
Extra feature for the FOSRestBundle
README 文档
README
Provide extra feature for the FOSRestBundle.
Dependency
FOSRestExtraBundle requires FOSRestBundle.
Installation
Add this line in your composer.json:
{
"require": {
"m6web/fos-rest-extra-bundle": "~1.0"
}
}
Update your vendors:
$ composer update m6web/fos-rest-extra-bundle
Add to your AppKernel.php:
new FOS\RestBundle\FOSRestBundle(), new M6Web\Bundle\FOSRestExtraBundle\M6WebFOSRestExtraBundle(),
Then modify the FOSRestBundle configuration of your application to add :
fost_rest: param_fetcher_listener: true
Configuration
m6_web_fos_rest_extra: param_fetcher: # Define if extra parameters are allowed. The behavior defined here is the default one and can # be overrided by a "RestrictExtraParam" annotation on the current action. # Optionnal, true by default allow_extra: true # Define if all parameters are strict. If true, all given parameters have to match defined # format for each on of them. # Optionnal, false by default strict: false # HTTP status code of throwed exception on query with invalid parameters # Optionnal, 400 by default error_status_code: 400
Usage
RestrictExtraParam(true/false)Annotation : to allow (false) or forbid (true) unknown parameters,trueby default.
use FOS\RestBundle\Controller\Annotations\QueryParam; use M6Web\Bundle\FOSRestExtraBundle\Annotation\RestrictExtraParam; /** * TestController */ class TestController { /** * Restricted controller : only "param1" is permitted * * @return void * * @RestrictExtraParam(true) * * @QueryParam(name="param1", requirements="\d+", nullable=true, description="My Param 1") */ public function getRestrictedAction() { } /** * Unrestricted controller : "param1" and unknown parameters are permitted * except if bundle configuration doesn't allow it * * @QueryParam(name="param1", requirements="\d+", nullable=true, description="My Param 1") * * @return void */ public function getNonRestrictedAction() { } }
Launch Tests
$ bin/atoum
统计信息
- 总下载量: 160.42k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2015-06-18