rails 3 link_to与ONLY_path = false

时间:2010-11-15 05:29:10

标签: ruby-on-rails

这不会提供完整的网址,因为它在邮寄程序中会中断

<%= link_to @conversation.title, conversations_path %>

这给了我完整的网址,这很好:

<%= conversations_url(:only_path => false) %>

我如何充分利用这两个世界?我想link_to但是有完整的路径?

由于

2 个答案:

答案 0 :(得分:6)

没有测试这个..你试过这个吗?

<% conversations_url(:only_path => false) do %>   
  @conversation.title 
<% end &>

答案 1 :(得分:4)

谢谢Oluf,当我试图解决类似的问题时遇到了你的答案。

该链接可能会被重写为:

<%= link_to( @conversation.title, conversations_url( :only_path => false)) %>