17

文档(和谷歌)中可以明显看出如何生成带有段的链接,例如podcast/5#comments. :anchor您只需为to传递一个值link_to

我关心的是生成<a name="comments">Comments</a>标签的简单得多的任务,即第一个链接的目的地。

我尝试了以下方法,虽然它们似乎有效,但标记不是我所期望的:

link_to "Comments", :name => "comments"
link_to "Comments", :anchor => "comments"

我想我错过了一些明显的东西。谢谢。

4

3 回答 3

54

您对 Ruby 的语法糖(Rails 大量使用)感到困惑。在回答你的问题之前,让我简要解释一下。

当 ruby​​ 函数采用一个散列参数时:

def foo(options)
  #options is a hash with parameters inside
end

您可以“忘记”放置括号/方括号,并像这样称呼它:

foo :param => value, :param2 => value

Ruby 将填补空白并理解您要完成的是:

foo({:param => value, :param2 => value})

现在,对于您的问题:link_to采用两个可选的哈希值 - 一个被调用options,另一个被调用html_options。你可以想象它是这样定义的(这是一个近似值,它要复杂得多)

def link_to(name, options, html_options)
...
end

现在,如果您以这种方式调用它:

link_to 'Comments', :name => 'Comments'

Ruby 会有些困惑。它会尝试为您“填空”,但不正确:

link_to('Comments', {:name => 'Comments'}, {}) # incorrect

它会认为那name => 'Comments'部分属于选项,而不是html_options

你必须自己填补空白来帮助 ruby​​。将所有括号放在适当的位置,它将按预期运行:

link_to('Comments', {}, {:name => 'Comments'}) # correct

如果需要,您实际上可以删除最后一组括号:

link_to("Comments", {}, :name => "comments") # also correct

但是,为了使用 html_options,您必须保留第一组括号。例如,您需要对带有确认消息和名称的链接执行此操作:

link_to("Comments", {:confirm => 'Sure?'}, :name => "comments")

其他rails helper 具有类似的结构(即form_forcollection_select),因此您应该学习这种技术。如有疑问,只需添加所有括号。

于 2010-01-19T18:30:13.927 回答
14

如果你想通过 rails,我建议content_tagdocs)。

例子:

content_tag(:a, 'Comments', :name => 'comments')
于 2010-01-19T10:46:52.547 回答
0
<%= link_to('new button', action: 'login' , class: "text-center") %>

为 login.html ig 创建了一个锚标记

<a href="login.html" class = "text-center"> new button </a>

并且对于

<a href="admin/login.html" class = "text-center"> new button </a>

采用

<%= link_to('new button', controller: 'admin',
    action: 'login' , class: "text-center") %>
于 2016-12-02T07:43:39.200 回答