> 您好!
>     我想请问下nginx模块里面怎么获取post参数,能有具体的代码更好!谢谢
>

对于 "application/x-www-form-urlencoded" 格式的 POST 参数获取,可以参考 ngx_lua 模块的
ngx.req.get_post_args() 函数以及 ngx_form_input 模块的实现:

    http://wiki.nginx.org/HttpLuaModule#ngx.req.get_post_args

    https://github.com/calio/form-input-nginx-module

而对于 "multipart/form-data" 格式的 POST 参数获取,可以参考 ngx_upload 模块以及 lua-resty-upload 库:

http://www.grid.net.ru/nginx/upload.en.html

https://github.com/agentzh/lua-resty-upload

Best regards,
-agentzh

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-09-26
  • 2022-12-23
  • 2021-11-06
  • 2021-11-10
  • 2021-07-05
  • 2021-10-17
猜你喜欢
  • 2021-08-07
  • 2021-05-28
  • 2022-12-23
  • 2021-07-28
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案