我正在使用erb模板,无法使以下代码正常工作。我试图删除嵌套标签周围的引号,但没有运气。我正在使用Rails 4.0。
<%= image_tag("<%= project.image_path%>", alt: "project") %>
错误:
_project.html.erb:1: syntax error, unexpected '>'...e_append='", alt: "project") %>';@output_buffer.to_s
感谢您的帮助。
答案 0 :(得分:3)
你还在使用rails功能
<%= image_tag( project.image_path, alt: "project") %>
应该有效