12

我正在使用带有 HAML 的 Twitter Bootstrap 中的“按钮下拉菜单”。在 Bootstrap 文档中,我找到了示例:

<div class="btn-group">
  <a class="btn dropdown-toggle" data-toggle="dropdown" href="#">
    Action
    <span class="caret"></span>
  </a>
  <ul class="dropdown-menu">
    <!-- dropdown menu links -->
  </ul>
</div>

我尝试使用 HAML 重写它:

%div{:class => 'btn-group task_controller'}
  %a{:class => 'btn-mini dropdown-toggle', "data-toggle" => 'dropdown', :href => '#'} Action
    %span{:class => 'caret'}
  %ul{:class => 'dropdown-menu'}
    %a{:class => 'close_task', :name => task.name, :href => '#' } Close        

但收到错误消息:

Haml::SyntaxError - Illegal nesting: content can't be both given on the same line as %a and nested within it.

所以 Bootstrap 说我把元素放在 -tag 里面,但是 HAML 不允许这样做。我该如何解决这个问题?

4

3 回答 3

33

问题出在以下几行:

%a{:class => 'btn-mini dropdown-toggle', "data-toggle" => 'dropdown', :href => '#'} Action
  %span{:class => 'caret'}

错误消息:content can't be both given on the same line as %a and nested within it指的Action是“与 %a 位于同一行”的%span{:class => 'caret'}内容,以及“嵌套在其中”的内容。

更一般地说,也许更容易看到,你不能有这样的东西:

%tag Some content here
  And something here as well

解决方法是将两者都嵌套在%a

%a{:class => 'btn-mini dropdown-toggle', "data-toggle" => 'dropdown', :href => '#'}
  Action
  %span{:class => 'caret'}

这给出了所需的输出:

<a class='btn-mini dropdown-toggle' data-toggle='dropdown' href='#'>
  Action
  <span class='caret'></span>
</a>
于 2012-04-18T21:25:42.437 回答
7

不要忘记您的 Haml 习语!

#div{:class => 'btn-group task_controller'}

相当于:

.btn-group.task_controller

…ETC。

于 2012-07-26T06:36:01.793 回答
0

尝试这个:

%div{:class => 'btn-group task_controller'}
  %a{:class => 'btn-mini dropdown-toggle', "data-toggle" => 'dropdown', :href => '#'}
    Action
    %span{:class => 'caret'}
  %ul{:class => 'dropdown-menu'}
    %a{:class => 'close_task', :name => task.name, :href => '#' } Close  

只有当标签中没有更多内容行时,标签名称和内容才能在同一行。

于 2012-04-18T21:28:05.257 回答