railsでラジオボタンの初期値を変数で指定する方法
東京ウェブ制作ブロマガ
140ヶ月前
●コントローラ# coding: utf-8class TopController < ApplicationController def index @hoge = true endend●ビュー<%= form_tag({ :controller => 'top', :action => 'index' }, { :method => :get, :id => 'fm' }) do %><p>リンゴ<%= radio_button 'page', 'fruit', 'りんご', {} %> ミカン<%= radio_button 'page'...