标签: ruby haml
我有一个haml表,我希望表头的id能够根据ruby变量@title_id进行更改。 在伪代码中,这就是我想要实现的目标:
%th.@title_id
答案 0 :(得分:5)
这应该是这样的:
%th{:id => @title_id}