我在我的应用程序中使用设计,需要将设计HTML更改为HAML。我坚持这句话。
<%= error_messages_for resource %>
有人可以帮我转换成HAML吗?
感谢。
答案 0 :(得分:0)
HAML版本:
= error_messages_for resource
参考:http://haml-lang.com/docs/yardoc/file.HAML_REFERENCE.html#inserting_ruby_
等号字符后跟Ruby代码。此代码已评估 并将输出插入到文档中。例如:
%p
= ['hi', 'there', 'reader!'].join " "
= "yo"
编译为:
<p>
hi there reader!
yo
</p>