add params support in options 306/head
authorYuzo <hyzgog@gmail.com>
Thu, 22 Jan 2015 05:12:48 +0000 (13:12 +0800)
committerYuzo <hyzgog@gmail.com>
Thu, 22 Jan 2015 05:12:48 +0000 (13:12 +0800)
libs/luci-lib-httpclient/luasrc/httpclient.lua

index af79695..c76cc54 100644 (file)
@@ -97,7 +97,11 @@ end
 function request_raw(uri, options)
        options = options or {}
        local pr, auth, host, port, path
-       
+
+       if options.params then
+               uri = uri .. '?' .. http.urlencode_params(options.params)
+       end
+
        if uri:find("%[") then
                if uri:find("@") then
                        pr, auth, host, port, path = uri:match("(%w+)://(.+)@(%b[]):?([0-9]*)(.*)")