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
代码来解决问题?
答案 0 :(得分:1)
必须使用双引号:
<%= link "Register", to: user_path(@conn, :new), class: "pure-menu-link" %>