添加:类到链接

时间:2016-07-16 07:59:44

标签: elixir phoenix-framework

https://hexdocs.pm/phoenix_html/Phoenix.HTML.Link.html#link/2处的文档提供了以下示例,将类添加到link

link("<hello>", to: "/world", class: "btn")

但是当我使用下面的代码时,Phoenix引发了一个参数错误:

<%= link "Register", to: user_path(@conn, :new), class: 'pure-menu-link' %>

如何添加class代码来解决问题?

1 个答案:

答案 0 :(得分:1)

必须使用双引号:

<%= link "Register", to: user_path(@conn, :new), class: "pure-menu-link" %>