首页 > 其他 > 详细

访问请求体

时间:2020-02-27 22:13:44      阅读:88      评论:0      收藏:0      [点我收藏+]
content_by_lua_block {
ngx.req.read_body() -- explicitly read the req body
local data = ngx.req.get_body_data()
if data then
ngx.say("body data:")
ngx.print(data)
return
end

-- body may get buffered in a temp file:
local file = ngx.req.get_body_file()
 if file then
ngx.say("body is in file ", file)
else
ngx.say("no body found")
end
}

访问请求体

原文:https://www.cnblogs.com/justart/p/12374700.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!