在 Rails 中我们可以将参数传递给新的 Action

发布于 2024-09-01 12:33:53 字数 235 浏览 4 评论 0原文

我想在新的邀请操作中使用实例变量编写一条消息,如下所示。 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

[浮城] 2024-09-08 12:33:54

我猜想 redirect_to 通过客户端,所以你可能需要使用 params[]

I guess that redirect_to goes through the client, so you might need to use params[] for that

掌心的温暖 2024-09-08 12:33:53

您可能想澄清您的问题,但是 flash 消息难道不能解决您的问题吗?

You might want to clarify your question, but wouldn't a flash message solve your problem?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文