标签: ruby-on-rails haml
我有haml代码如下:
.col-md-2.col-form-label= label_tag(name='First Second')
输出如下:First second而不是First Second。
First second
First Second
如何在不使用css看起来像First Second的情况下制作它。
css
答案 0 :(得分:1)
您必须在content_or_options的第二个参数中指定label_tag。找到文档here
content_or_options
label_tag
这将是更新:
label_tag('First Second', 'First Second')
在label_tag方法中,如果未提供任何内容,name会调用humanize,使Second小写。
name
Second