From 0ae25fda2e25d6e83d03b6eeec2d968c116cfcdf Mon Sep 17 00:00:00 2001 From: moro Date: Thu, 15 Sep 2011 00:31:27 +0900 Subject: [PATCH] see #9, thanks. --- index.markdown | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/index.markdown b/index.markdown index 49303aa..063838d 100644 --- a/index.markdown +++ b/index.markdown @@ -134,6 +134,29 @@ Ruby on Railsの定番リファレンスとして好評を博したレシピブ …(略) +### Recipe 119 先頭のコードリストの例で、結果が出力されない(p.276) + +先頭のリストのコードが、結果が出力されない問題があったり、Railsからの警告がでる書式であったりします。```form_for```メソッド、```collection_select```メソッドの両方の例で```<%= %>```であるべきところが```<% %>```になっています。 + +#### 正 + + <%= form_for @entry do |f| %> + # モデルオブジェクトCategoryを選択対象とするドロップダウンリストを + # 生成する + <%= f.collection_select(:category_id, + Category.all, :id, :name) %> + <% end %> + +#### 誤 + + <% form_for @entry do |f| %> + # モデルオブジェクトCategoryを選択対象とするドロップダウンリストを + # 生成する + <% f.collection_select(:category_id, + Category.all, :id, :name) %> + <% end %> + + ### Recipe 171 `xhr`メソッドの引数の説明で数が間違っている(p.398) 二つ目のコードリストの前の説明文にて、`xhr`メソッドの引数が間違っています。