0

当我有这个 HAML 文件时(Rails 布局)

!!! 5
%html
  %head
    = stylesheet_link_tag 'admin'
  %body
    %h1 ADMIN TEST
      = yield

当我尝试查看页面时出现以下错误:

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

是什么赋予了?(错误指向该yield行)。

4

1 回答 1

1

我看到我做了什么。被= yield标签覆盖,就好像它在内部一样%h1,而不是在正文中。我忽略了这一点。

于 2013-10-26T16:30:48.907 回答