基础信息
名称: 3.0
rest_request_${method}:${rest_route}
类型: 过滤器(filter)
作用: 在 Rest API 收到请求时,对接收到的请求(req)进行数据过滤(这将影响所有接收的Rest API数据)
过滤器参数
使用示例
对post
接口 /pandastudio/sample
接收的data进行过滤
add_filter('rest_request_post:/pandastudio/sample', req => {
// get 请求,data 数据在 req.query
// post请求,data 数据在 req.body
req.body = {
//...
}
return req;
})