openresty(nginx+lua)中获取不到post数据,ngx.req.get_body_data返回nil
This function returns nil if
the request body has not been read,
the request body has been read into disk temporary files,
or the ...……
【1】应用示例
文件类型为wav格式
1 -- 判断文件类型
2 local function isType(filename)
3 local res = string.match(filename, amp;quot;.%.wav$amp;quot;)
4 if not res then
5 return 'i ...……
今天在学习lua,熟悉项目代码的过程中,发现string.gsub好高级,所以在此mark下。
以下是lua5.1的官方文档介绍。
string.gsub (s, pattern, repl )
Returns a copy of s in which all occurrences of the ...……