基础信息
名称: 3.0
rest_send_${method}:${rest_route}
类型: 过滤器(filter)
作用: 在 Rest API 发送数据时,对发送的数据进行过滤(这将影响所有Rest API接口发送的数据)
过滤器参数
# |
类型 |
备注 |
1 |
NV_Error / Object |
准备发送的数据 |
2 |
Object |
Rest API 收到的请求 req |
使用示例
对post
接口 /pandastudio/sample
返回给客户端的数据进行过滤
add_filter('rest_send_post:/pandastudio/sample', data => {
return {
//...
}
})