作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在模型观察者中将消息分配给 flash[:notice]。
这个问题已经被问过:Ruby on Rails: Observers and flash[:notice] messages?
但是,当我尝试在我的模型中访问它时收到以下错误消息:
undefined local variable or method `flash' for #<ModelObserver:0x2c1742c>
Here is my code:
class ModelObserver < ActiveRecord::Observer
observe A, B, C
def after_save(model)
puts "Model saved"
flash[:notice] = "Model saved"
end
end
最佳答案
不,您在进行保存的 Controller 中设置它。 flash
是在 ActionController::Base
上定义的方法.
关于ruby-on-rails - 访问rails flash [:notice] in a model,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2701932/
我是一名优秀的程序员,十分优秀!