私は、私の見解では、これを持って次の生成Rails 3のoptions_from_collection_for_selectでメニューオプションをカスタマイズするにはどうすればよいですか?
<%
@plan = Plan.limit(4).all
plan ||= Plan.find(params[:plan_id])
%>
<%= select_tag "Plan", options_from_collection_for_select(@plan, 'id', 'name', plan.id) %><br />
:
<select id="Plan" name="Plan"><option value="1">Gecko ($50)</option>
<option value="2" selected="selected">Iguana ($99)</option>
</select>
価格:しかし
<select id="Plan" name="Plan"><option value="1">Gecko</option>
<option value="2" selected="selected">Iguana</option>
</select>
が、私はそれは、次のオプションを作成したいと思います角括弧内はplan.amount
です。
これは素晴らしいです。ありがとう。 – marcamillion