我正在使用rails 3.0.7。在控制器中,我有:respond_with重定向通知flash消息不工作
def create
@subscription = Subscription\
.new_from_nested_attributes_parameters(params[:subscription])
if @subscription.save
flash[:notice] = 'The Subscription was successfully created.'
end
respond_with @subscription
end
,並在視圖:
<%="Notice:#{flash[:notice]}"%>
不盡管該對象被正確保存打印任何東西。
你有什麼想法解決這個問題嗎?
這是否保持閃光? – 2011-11-29 10:43:19
這不適用於重定向到subscriptions_path(即#index) – James 2013-07-01 18:16:56