单选按钮如何作为参数传递?我正在使用 Ruby Sinatra Web 服务器。如何获取服务器端所选单选按钮的值?
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