我想在index.html.erb中顯示每篇文章的disqus評論數。我需要生成的URL字符串,並將它傳遞給LINK_TO在ERB文件中構建url字符串
所以基本上像URL = article_path(article.id)+ 「/#disqus_thread」
的HTML生成的URL字符串將http://example.com/articles/21/#disqus_thread
這裏的代碼:
<% @article.each do |article| %>
<% link_to article_path(article.id)'/#disqus_thread' %> <-- not working.
<% end %>
感謝您的幫助!
可能還想提及''%'應該是'<%=',否則它不會'呈現'。 – engineersmnky 2014-09-03 19:55:25
啊,的確沒有得到。 – Brennan 2014-09-03 19:55:51
哦謝謝。簡單。我在link_to中選項參數過於複雜 – user2511030 2014-09-03 19:56:42