妙に忘れるのでメモ。 覚えるタグは基本的に三つ。 モデルの属性値を select タグで選択したい collection_select モデルの属性値以外を select タグで選択したい select_tag / options_from_collection_for_select collection_select モデルの属性値を select する。 collection_select(object, method, collection, value_method, text_method, options = {}, html_options = {}) たとえば、 user オブジェクトの locale 属性を、 [ [:jp, 'Japan'], [:us, 'United States'], [:uk, 'United Kingdom'] ] から選択させたい場合は、 <