我有一個奇怪的問題,西納特拉:西納特拉失去查詢字符串的部分,捲曲
class Server < Sinatra::Base
before do
puts params.inspect
end
get '/' do
end
end
當我蜷縮URL以:
chienandalusialocal:~ ngw$ curl http://0.0.0.0:9292/thing?a=100&b=200
params哈希表中只包含第一個參數:
127.0.0.1 - - [12/Feb/2014 17:47:39] "GET /thing?a=100 HTTP/1.1" 401 - 0.0011
a=100
{"a"=>"100"}
這裏發生了什麼,我該怎麼辦才能解決這個問題?
也許你的外殼解釋查詢字符串? – Max
'curl'http://0.0.0.0:9292/thing?a = 100&b = 200'' – bliof