# 通用注解修饰方法
修饰方法的作用是对路由进行一些预处理处理再返回给方法。
>[info] 以下修饰方法不管是GET或者POST,均可使用
| 注解名称 | 注解作用 |
| --- | --- |
| @PathVariable | 获取自定义路由 `占位符` 的参数,并导入到方法中(支持多个),如果增加参数 `required=true`,则不到该参数会抛出一个http 400的 异常 |
| @RequestParam | 获取路由某个参数也就是`?`后面的,并导入到方法中(支持多个) |
| @ResponseBody | 对回的数据增加 Content-type :json,否则默认为html |
~~~
/**
* post 表单 请求
* @PostMapping("test4/{name}")
* @PathVariable("name", required=true)
* @param $name
* @return string
*/
public function test4($name){
var_dump($name);
return "test444";
}
~~~
访问 [http://serverName:8080/test/hello](http://127.0.0.1:8080/test/hello) 。那么`hello` 就会传递到name绑定的变量中去,最终test4(`$name`) 被传递了 hello。如果没有传递{name},则会抛出 http 400 的异常。
~~~
/**
* get请求
* @GetMapping("test/{name2}/{name3}")
* @PathVariable("name2")
* @PathVariable("name3")
* @RequestParam("id")
* @param $name2
* @param $name2
* @param $id
* @return string
*/
public function test($name2, $name3, $id)
{
var_dump($name2, $name3, $id);
return "test222";
}
~~~
访问 http://127.0.0.1:8080/test/hello/world?id=99 。那么`hello`会传递到 `$name2`变量,`world`会传递到`$name3`的变量中,`99`会传递到`$id`中。
>[info] PathVariable,RequestParam 还支持 required 参数,如果设置为true,那么当该参数不存在时会抛出异常
# POST修饰方法
POST修饰方法帮助我们在接收到参数的时候进行一些预处理。
> 以下修饰方法仅限在POST,PUT下使用。
| 注解名称 | 注解作用 |
| --- | --- |
| @RequestBody | 从原始请求raw中解析json字符串,并转为数组。如果解析失败抛出异常。 |
| @RequestRawJson | 同上 |
| @RequestRaw | 直接获取post的未编码raw数据 |
| @RequestRawXml | 从从原始请求raw中解析xml字符串,并转为数组。如果解析失败抛出异常。 |
| @ModelAttribute | 获获取POST数据,导入给model对象,或传给一个数组。 |
| @RequestFormData | 获获取POST数据的一个参数,传给一个参数。 |
> POST修饰注释,只能在申明了 PostMapping()注解的方法上使用
> \*
## @RequestBody
`POST`一个`raw`的 json 数据。`$body`收到的就为转化成数组的表单数据,如果解析失败抛出异常。
~~~
/**
* @PostMapping()
* @RequestBody("body")
*/
public function test8($body){
print_r($body);
return 'test8';
}
~~~
## **@RequestRaw**
`POST`一个 raw数据,`$raw`收到的就为原始表单数据。
~~~
/**
* @PostMapping("test6/{name}")
* @RequestRaw("raw")
* @param $raw
* @return string
*/
public function test6($raw){
var_dump($name, $raw);
return "test6";
}
~~~
## **@RequestRawXml**
`POST`一个xml raw,那么`$test`收到的就为转换成数组后的表单数据。
~~~
/**
* @PostMapping()
* @RequestRawXml("test")
* @param $test
* @return string
*/
public function test7($test){
var_dump($test);
return 'test7';
}
~~~
## **@ModelAttribute**
>[danger] 如果使用 RequestBody,RequestRaw\* 相关方法,则该注解不可用。
`POST`一个表单数据(form-data或www-form-urnecoded),testForm 类型的 $test 变量会被填充数据。
如果传递page=1,对象的属性就会被自动覆盖。如果不给变量传递类型,则该变量拿到post所有数据。
~~~
/**
* post 表单 请求
* @PostMapping("test3/{name}")
* @PathVariable("name")
* @ModelAttribute("test")
* @param $name
* @param $test
* @return string
* 实际上是 获取整个post表单的数据 到声明的变量里
*/
public function test3($name, testForm $test)
{
print_r($this->request->post());
var_dump($name, $test);
return "test444";
}
class testForm {
public $page = 1;
public $test = 0;
}
~~~
## RequestFormData
将表单的一个参数填充到类方法的变量中。
POST hhh=123,则 `$hhh` 为 123
~~~
/**
* post 表单 请求
* @PostMapping("test4/{name}")
* @PathVariable("name")
* @RequestFormData("hhh")
* @param $name
* @param $test
* @return string
* 知己上只能获取声明的字段
*/
public function test4($name, $hhh){
var_dump($name, $hhh);
return "test444";
}
~~~
- 前言
- 捐赠ESD项目
- 使用篇-通用
- 环境
- 安装
- 规范
- 压力测试
- 配置
- 如何设置YML配置
- server配置
- 端口配置
- 项目结构
- 事件派发
- 日志
- 注解
- DI容器
- 自定义进程
- 并发及协程池
- Console插件
- Scheduled插件
- Redis插件
- AOP插件
- Saber插件
- Mysql插件
- mysql事务
- Actuator插件
- Whoops插件
- Cache插件
- PHPUnit插件
- Security插件
- Session插件
- EasyRoute插件
- http路由
- ProcessRpc插件
- AutoReload插件
- AnnotationsScan插件
- Tracing-plugin插件
- MQTT插件
- Pack插件
- AMQP插件
- Validate插件
- Uid插件
- Topic插件
- Blade插件
- CsvReader插件
- hashed-wheel-timer-plugin插件
- 使用篇-HTTP
- 路由
- 静态文件
- 路由定义
- 修饰方法
- 路由分组
- 资源路由
- 端口作用域
- 异常处理
- 跨域请求
- 路由缓存
- 控制器
- 控制器初始化
- 前置操作
- 跳转和重定向
- 异常处理
- 请求
- 请求对象
- 请求信息
- request消息
- response消息
- stream消息
- url接口
- 验证器
- 内置验证器
- 内置过滤器
- 使用篇-WS
- 如何使用
- 路由
- 使用篇-TCP
- 插件篇-PluginSystem
- 微服务篇-ESDCloud
- CircuitBreaker插件
- SaberCloud插件
- 分布式链路追踪系统
- Consul插件