Extreme Ruby/Rails 新手在这里:我正在尝试为块中包含的每个单独的帖子链接到搜索操作:
<% split_tags = post.tags.split(',') %> # returns ["food", "computers", "health"] %>
<p>Keywords: <%= split_tags.each {|tag| link_to(tag, front_search_tag_path(:tag => tag))}) %></p>
但它返回的只是Keywords: ["food", "computers", "health"]
. .each 不应该遍历数组并以标签作为参数提供到每个 search_tag_path 的链接吗?