我正在使用 Sinatra + rack-flash3 gem。我安装了它,但尽管如此,它还是引发了异常。这里有一个layout.haml
!!!5
%html
%body
.my_div
!= haml :"shared/_flash"
!= yield
和_flash.haml
.my-div2
.flash-notice
- if flash[:notice]
.alert.alert-success
= flash[:notice]
- if flash[:error]
.alert.alert-error
= flash[:error]
- if flash[:info]
.alert.alert-info
= flash[:info]
错误是
undefined local variable or method `flash' for #<App:0x00000004226c90>
file: _flash.haml location: evaluate_source line: 3
我想知道为什么会这样?