ScaffoldPlusAnswerThree » 履歴 » リビジョン 3
リビジョン 2 (Yuumi Yoshida, 2008-01-13 16:04) → リビジョン 3/17 (Yuumi Yoshida, 2008-01-13 16:09)
= 演習3解答例 = == 作業手順 == {{{ ruby script/generate model user name:string user_id:integer ruby script/generate migration AddUserIdToTodo user_id:integer rake db:migrate }}} == 変更点 == === 1. app/models/user.rb === Todoとの一対多の関連を記述 {{{ #!html <pre class="wiki">class User < ActiveRecord::Base <font color="red">has_many :todos</font> end </pre> }}} === 2. app/models/todo.rb === Userとの多対一の関連(従属)を記述 {{{ #!html <pre class="wiki">class Todo < ActiveRecord::Base <font color="red">belongs_to :user</font> end </pre> }}} === 3. app/views/todos/index.html.erb === user.nameカラム表示用のコードを追加 {{{ #!html <pre class="wiki"><h1>Listing todos</h1> <h1>Listing todos</h1> <table> <table> <tr> <tr> <th>Due</th> <th>Due</th> <font color="red"><th>Name</th></font> <th>Name</th> <th>Task</th> <th>Task</th> </tr> </tr> <%25 <%25 for todo in @todos %25> %25> <tr> <tr> <td><%25=h <td><%25=h todo.due %25></td> %25></td> <font color="red"><td><%25=h <td><%25=h todo.user.name %25></td></font> %25></td> <td><%25=h <td><%25=h todo.task %25></td> %25></td> <td><%25= <td><%25= link_to 'Show', todo %25></td> %25></td> <td><%25= <td><%25= link_to 'Edit', edit_todo_path(todo) %25></td> %25></td> <td><%25= <td><%25= link_to 'Destroy', todo, :confirm => => 'Are you sure?', :method => => :delete %25></td> %25></td> </tr> </tr> <%25 <%25 end %25> %25> </table> </table> <br /> <br /> <%25= <%25= link_to 'New todo', new_todo_path %25> %25> </pre> }}} === 4. app/views/todos/show.html.erb === user.nameカラム表示用のコードを追加 {{{ #!html <pre class="wiki"><p> <p> <b>Due:</b> <b>Due:</b> <%25=h <%25=h @todo.due %25> %25> </p> </p> <p> <p> <b>Task:</b> <b>Task:</b> <%25=h <%25=h @todo.task %25> %25> </p> </p> <font color="red"><p> <p> <b>Name:</b> <b>Name:</b> <%25=h <%25=h @todo.user.name %25> %25> </p></font> </p> <p> <p> <b>Memo:</b><br/> <b>Memo:</b><br/> <%25=new_line(h(@todo.memo)) %25> <%25=new_line(h(@todo.memo)) %25> </p> </p> <%25= <%25= link_to 'Edit', edit_todo_path(@todo) %25> %25> | <%25= <%25= link_to 'Back', todos_path %25> %25> </pre> }}} === 5. app/views/todos/edit.html.erb === user.name入力表示用のコードを追加 {{{ #!html <pre class="wiki"><h1>Editing todo</h1> <h1>Editing todo</h1> <%25= <%25= error_messages_for :todo %25> %25> <%25 <%25 form_for(@todo) do |f| %25> %25> <p> <p> <b>Due</b><br /> <b>Due</b><br /> <%25= <%25= f.date_select :due %25> %25> </p> </p> <p> <p> <b>Task</b><br /> <b>Task</b><br /> <%25= <%25= f.text_field :task %25> %25> </p> </p> <font color="red"><p> <p> <b>Name</b><br /> <b>Name</b><br /> <%25= <%25= f.select :user_id, User.find(:all).collect {|u| [ u.name, u.id ] } %25> %25> </p></font> </p> <p> <p> <b>Memo</b><br /> <b>Memo</b><br /> <%25= <%25= f.text_area :memo %25> %25> </p> </p> <p> <p> <%25= <%25= f.submit "Update" %25> %25> </p> </p> <%25 <%25 end %25> %25> <%25= <%25= link_to 'Show', @todo %25> %25> | <%25= <%25= link_to 'Back', todos_path %25> %25> </pre> }}} === 6. app/views/todos/new.html.erb === user.name入力表示用のコードを追加 {{{ #!html <pre class="wiki"><h1>New todo</h1> <h1>New todo</h1> <%25= <%25= error_messages_for :todo %25> %25> <%25 <%25 form_for(@todo) do |f| %25> %25> <p> <p> <b>Due</b><br /> <b>Due</b><br /> <%25= <%25= f.date_select :due %25> %25> </p> </p> <p> <p> <b>Task</b><br /> <b>Task</b><br /> <%25= <%25= f.text_field :task %25> %25> </p> </p> <font color="red"><p> <p> <b>Name</b><br /> <b>Name</b><br /> <%25= <%25= f.select :user_id, User.find(:all).collect {|u| [ u.name, u.id ] } %25> %25> </p></font> </p> <p> <p> <b>Memo</b><br /> <b>Memo</b><br /> <%25= <%25= f.text_area :memo %25> %25> </p> </p> <p> <p> <%25= <%25= f.submit "Create" %25> %25> </p> </p> <%25 <%25 end %25> %25> <%25= <%25= link_to 'Back', todos_path %25> </pre> %25> }}}