与我的previous question相关我还有一件事我想理解 - 为什么:
= link_to(root_path)
= link_to(@some_path_set_in_mailer)
在开发模式下工作(config.action_mailer.perform_deliveries设置为true,实际发送电子邮件),并且必须将生产或登台更改为:
= link_to(@some_path_set_in_mailer, @some_path_set_in_mailer)
避免“No route matches {}”错误?
我在rails 3.2中遇到了这个问题。
答案 0 :(得分:0)
我不完全确定为什么会有差异,因为不应该有。
但是,link_to
通常采用以下格式:
= link_to("Some link description here", root_path)
如果你有一个更长的描述需要放在do
块中,那么你通常只留下链接描述文字就是这样:
= link_to(root_path) do
%p Some link description here
= image_tag("some_image.jpg")
所以我建议坚持上面的首选语法。
link_to
的文档并没有真正谈论你使用过多的简短方法。
以下是它的来源:
# File actionpack/lib/action_view/helpers/url_helper.rb, line 231
def link_to(*args, &block)
if block_given?
options = args.first || {}
html_options = args.second
link_to(capture(&block), options, html_options)
else
name = args[0]
# this is probably where your issue is coming from
options = args[1] || {}
html_options = args[2]
html_options = convert_options_to_data_attributes(options, html_options)
url = url_for(options)
href = html_options['href']
tag_options = tag_options(html_options)
href_attr = "href=\"#{ERB::Util.html_escape(url)}\"" unless href
"<a #{href_attr}#{tag_options}>#{ERB::Util.html_escape(name || url)}</a>".html_safe
end
end