單選按鈕如何作爲參數傳遞?我正在使用Ruby Sinatra Web服務器。我怎樣才能獲得服務器端選定單選按鈕的值?如何在GET請求中傳遞單選按鈕?
HTML
<form method="get" action="/register">
<input type="radio" name="regRadio" value="1" />
<input type="radio" name="regRadio" value="2" />
<input type="radio" name="regRadio" value="3" />
<input type="radio" name="regRadio" value="4" />
</form>
紅寶石
get '/register' do
params[:regRadio]??
end
在你的例子中,如果選擇了單選按鈕,它總是會發送'regRadio = 1'。您可能想要爲每個單選按鈕使用不同的值,以便您可以確定哪個實際選定了哪個。 – aroth 2012-04-23 23:22:58
我的錯誤,單選按鈕將有不同的值。 – Takkun 2012-04-23 23:23:29
你問過之前試過你的代碼嗎? – d11wtq 2012-04-23 23:24:53