我正在尝试在我的 rails 应用程序中实现设计,并且在我的 header.html.erb 中收到此语法错误
<% if user_signed_in? %>
Logged in as <strong><%= current.user.email %></strong>.
<%= link_to 'Edit profile', edit_user_registration_path %>
<%= link_to 'Logout', destroy_user_session_path, method: :delete %>
<% else %>
<%= link_to 'Sign up', new_user_registration_path %> |
<%= link_to 'Login', new_user_ssession_path %>
<% end %>
这是我收到的错误消息:
编译错误/Users/ryanoliver/repos/joyties/app/views/layouts/application.html.erb:14:语法错误,意外':',期待')' ...roy_user_session_path,方法::删除);@output_buffer 。安全的...
非常感谢任何帮助
谢谢你