OpenResty入门记录

梦想与她 提交于 2020-03-05 18:24:31

Resty 入门

lacation

funciton 含义 备注
ngx.req.get_uri_args 获取参数
ngx.req.get_post_args 获取post参数
ngx.location.capture
ngx.location.capture_multi 子请求 local res1, res2 = ngx.location.capture_multi({ {"/sum", {args={a=3, b=8}}}
ngx.exec 内部跳转
ngx.redirect 外部重定向
ngx.encode_args 转义
ngx.req.get_body_data 获取body lua_need_request_body on;
ngx.req.read_body 非全局获取body
ngx.req.get_body_file 已存入临时文件时,通过该方法获取
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!