我在 customers/new 中有一个 :sidebar 部分,我愿意。content_for 部分是从嵌套的部分调用的。文本“hello1”出现,但“hello2”没有出现。
没有错误被抛出,我不知道如何排除故障。
有任何想法吗?
**layouts/application.haml**
.container
- unless signed_in?
= render "custom/account_#{current_account.id}" rescue nil
= yield
**customers/new.haml**
= yield :sidebar
**custom/_account_2.haml**
%p hello1
- content_for :sidebar do
%p hello2