Railsでto_sentenceを使用してlink_toを使用する際にいくつか問題があります。to_sentenceでlink_toを使用するとエラーが発生する
このコード行を使用すると、html出力が間違っています。
<%= @story.collections.map{ |u| link_to(u.name, collection_path(u)).html_safe }.to_sentence %>
このコードは、ページ上のテキストではなくリンク
<a href="/collections/One">One</a>, <a href="/collections/Two">Two</a>, and <a href="/collections/Three">Three</a>
としてレンダリングされる。これは私が
すべてのヘルプはありますありがとう、ありがとう!
ちょっとおかげけど私は "と"の部分が必要です。これは私に "One、Two、Three"を与えます。私は "One、Two、Three"が必要です。 –