回答編集履歴

1

リンクに

2020/09/05 06:49

投稿

unhappychoice
unhappychoice

スコア1531

test CHANGED
@@ -4,13 +4,13 @@
4
4
 
5
5
  `def link_to` で調べると、 二番目の引数は `options` で `url_for(options)` によって URL に変換されていることがわかります。
6
6
 
7
- https://github.com/rails/rails/blob/60ef07093d9023568ccbbd34e862b40395ec02f4/actionview/lib/action_view/helpers/url_helper.rb#L196
7
+ [https://github.com/rails/rails/blob/60ef07093d9023568ccbbd34e862b40395ec02f4/actionview/lib/action_view/helpers/url_helper.rb#L196](https://github.com/rails/rails/blob/60ef07093d9023568ccbbd34e862b40395ec02f4/actionview/lib/action_view/helpers/url_helper.rb#L196)
8
8
 
9
9
 
10
10
 
11
11
  `def url_for` で調べると、 Model が渡された場合(最後の `else` 節) ` HelperMethodBuilder.url.handle_model_call self, options` によって URL を作っていることがわかります
12
12
 
13
- https://github.com/rails/rails/blob/de7f57f9482dd94c585cbd63cdef061b81371db3/actionpack/lib/action_dispatch/routing/url_for.rb#L171
13
+ [https://github.com/rails/rails/blob/de7f57f9482dd94c585cbd63cdef061b81371db3/actionpack/lib/action_dispatch/routing/url_for.rb#L171](https://github.com/rails/rails/blob/de7f57f9482dd94c585cbd63cdef061b81371db3/actionpack/lib/action_dispatch/routing/url_for.rb#L171)
14
14
 
15
15
 
16
16