Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想通过使用该haml_tag方法重现下面的haml代码。
haml_tag
= %img { alt:'Hi' , src: 'hi.jpg' }
任何人都可以帮忙吗?
不..我刚刚意识到这一点。它是这样的:
- haml_tag :img, { alt:'Hi' , src: 'hi.jpg' }
注意细节的-代替=。haml_tag方法直接报告给haml模型。
-
=
比我想象的要容易。:)