国产chinesehd精品酒店,邱淑贞aa极毛片,国产在线色视频,玖玖爱zh综合伊人久久

網(wǎng)站首頁
手機(jī)版

Nginx服務(wù)器中使用lua獲取get或post參數(shù)

更新時間:2022-12-11 00:14:11作者:佚名

Nginx服務(wù)器中使用lua獲取get或post參數(shù)

使用ngx_lua模塊(http://wiki.nginx.org/HttpLuaModule):

local request_method = ngx.var.request_method

local args = nil

local param = nil

local param2 = nil

--獲取參數(shù)的值

if "GET" == request_method then

args = ngx.req.get_uri_args()

elseif "POST" == request_method then

ngx.req.read_body()

args = ngx.req.get_post_args()

end

param = args["param"]

param2 = args["param2"]

升級版(能處理content-type=multipart/form-data的表單):

local function explode ( _str,seperator )

local pos, arr = 0, {}

for st, sp in function() return string.find( _str, seperator, pos, true ) end do

table.insert( arr, string.sub( _str, pos, st-1 ) )

pos = sp + 1

end

table.insert( arr, string.sub( _str, pos ) )

return arr

end

local args = {}

local file_args = {}

local is_have_file_param = false

local function init_form_args()

local receive_headers = ngx.req.get_headers()

local request_method = ngx.var.request_method

if "GET" == request_method then

args = ngx.req.get_uri_args()

elseif "POST" == request_method then

ngx.req.read_body()

if string.sub(receive_headers["content-type"],1,20) == "multipart/form-data;" then--判斷是否是multipart/form-data類型的表單

is_have_file_param = true

content_type = receive_headers["content-type"]

body_data = ngx.req.get_body_data()--body_data可是符合http協(xié)議的請求體,不是普通的字符串

--請求體的size大于nginx配置里的client_body_buffer_size,則會導(dǎo)致請求體被緩沖到磁盤臨時文件里,client_body_buffer_size默認(rèn)是8k或者16k

if not body_data then

local datafile = ngx.req.get_body_file()

if not datafile then

error_code = 1

error_msg = "no request body found"

else

local fh, err = io.open(datafile, "r")

if not fh then

error_code = 2

error_msg = "failed to open " .. tostring(datafile) .. "for reading: " .. tostring(err)

else

fh:seek("set")

body_data = fh:read("*a")

fh:close()

if body_data == "" then

error_code = 3

error_msg = "request body is empty"

end

end

end

end

local new_body_data = {}

--確保取到請求體的數(shù)據(jù)

if not error_code then

local boundary = "--" .. string.sub(receive_headers["content-type"],31)

local body_data_table = explode(tostring(body_data),boundary)

local first_string = table.remove(body_data_table,1)

local last_string = table.remove(body_data_table)

for i,v in ipairs(body_data_table) do

local start_pos,end_pos,capture,capture2 = string.find(v,'Content%-Disposition: form%-data; name="(.+)"; filename="(.*)"')

if not start_pos then--普通參數(shù)

local t = explode(v,"rnrn")

local temp_param_name = string.sub(t[1],41,-2)

local temp_param_value = string.sub(t[2],1,-3)

args[temp_param_name] = temp_param_value

else--文件類型的參數(shù),capture是參數(shù)名稱,capture2是文件名

file_args[capture] = capture2

table.insert(new_body_data,v)

end

end

table.insert(new_body_data,1,first_string)

table.insert(new_body_data,last_string)

--去掉app_key,app_secret等幾個參數(shù),把業(yè)務(wù)級別的參數(shù)傳給內(nèi)部的API

body_data = table.concat(new_body_data,boundary)--body_data可是符合http協(xié)議的請求體,不是普通的字符串

end

else

args = ngx.req.get_post_args()

end

end

end

本文標(biāo)簽: 參數(shù)  表單  字符串  

為您推薦

將u深度pe系統(tǒng)注冊表進(jìn)行備份的圖文教程

將u深度pe系統(tǒng)注冊表進(jìn)行備份的圖文教程 注冊表作為windows系統(tǒng)重要的數(shù)據(jù)庫,用于存儲系統(tǒng)和應(yīng)用程序的設(shè)置信息,一旦注冊表損壞必然會導(dǎo)致程序無法正常運行,

2022-12-12 00:27

老毛桃winpe系統(tǒng)對注冊表信息進(jìn)行備份的方法

老毛桃winpe系統(tǒng)對注冊表信息進(jìn)行備份的方法 使用老毛桃win8pe時,許多系統(tǒng)文件.軟件都要寫入注冊表.如果沒有備份注冊表,一旦出現(xiàn)故障,可能會丟失保存在里

2022-12-12 00:27

使用系統(tǒng)默認(rèn)的備份還原注冊表的圖文教程

使用系統(tǒng)默認(rèn)的備份還原注冊表的圖文教程 下面小編為大家?guī)淼氖鞘褂孟到y(tǒng)默認(rèn)的備份還原注冊表的圖文教程.感興趣的朋友一起去看看吧! 方法: 1.因為權(quán)限的關(guān)系(在

2022-12-12 00:27

win10注冊表編輯器怎么恢復(fù)出廠設(shè)置(win10注冊表編輯器怎么恢復(fù)出廠設(shè)置)

win10注冊表編輯器怎么恢復(fù)出廠設(shè)置?當(dāng)我們在操作win10系統(tǒng)時,想要將注冊表編輯器恢復(fù)成出廠設(shè)置該怎么操作呢,下面就和小編一起來看看吧!

2022-12-12 00:24

注冊表編輯主鍵與鍵值詳解(注冊表中的鍵值)

注冊表編輯主鍵與鍵值詳解 使用注冊表編輯器,你可以在注冊表中編輯主鍵(或子鍵),同時也可以修改鍵值項數(shù)據(jù). 建立主鍵(或子鍵) 在注冊表中,注冊表編輯器左窗格顯

2022-12-12 00:24

win7注冊表有哪些常用設(shè)置? win7注冊表有哪些常用設(shè)置選項

win7注冊表有哪些常用設(shè)置? 一. 秀出自我風(fēng)格的屏幕保護(hù)畫面 1.氣泡屏幕保護(hù) 打開電腦,按開始鍵,點擊運行輸入regedit按回車鍵進(jìn)入注冊表界面,找到如

2022-12-12 00:24