书中云:当控制器中的 action 不是将模型返回的数据提交给某个视图显示,而是需要把处理结果交给另一个 action 时,我们可以使用 Rails 的重定向功能。 然后我作了个实验
class RedirectController < ApplicationController
def index
@student=Student.find(29)
redirect_to :action=>"another",:notice=>'student can be here'
end
def another
end
end
我要把从 model 取得的 student 信息在 another.html.erb 中显示
<%= notice%>
<%=@student.name%>
但是我在 another.html.erb 中什么都接收不到啊,rails 也没把处理结果@studen传给另一个 action(another) 啊 这是怎么回事呢