在 Rails 中我们可以将参数传递给新的 Action
我想在新的邀请操作中使用实例变量编写一条消息,如下所示。 redirect_to new_invitation_path("邀请你的朋友")
控制器邀请:
def new(message)
@message = message
@from_user_id = facebook_session.user.to_s
end
显然不可能,我怎样才能找到解决这个问题的方法?
i would like to write a message using an instince variable in the new invition action like this. redirect_to new_invitation_path("invite your friend")
Controller invitations:
def new(message)
@message = message
@from_user_id = facebook_session.user.to_s
end
Apparently it is not possible how can i find a way around this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我猜想 redirect_to 通过客户端,所以你可能需要使用 params[]
I guess that redirect_to goes through the client, so you might need to use params[] for that
您可能想澄清您的问题,但是
flash
消息难道不能解决您的问题吗?You might want to clarify your question, but wouldn't a
flash
message solve your problem?