haml 将 label_tag 名称转换为小写

haml converting label_tag name to lowercase

我的haml代码如下:

.col-md-2.col-form-label= label_tag(name='First Second')

输出看起来像:First second 而不是 First Second

如何不使用 css 使其看起来像 First Second

您必须在 label_tag 的第二个参数中指定 content_or_options。找到文档 here

这将是更新:

label_tag('First Second', 'First Second')

label_tag 方法中,如果未提供任何内容,humanize 将在 name 上调用,使 Second 变为小写。