gpt4 book ai didi

ruby-on-rails - Rails redirect_to 选择页面

转载 作者:行者123 更新时间:2023-12-04 04:34:19 34 4
gpt4 key购买 nike

在我的 rails 应用程序中,我有一个学生模型和一个 material_student。在学生登录后,我会将其重定向到一个页面,让他可以选择在两个“编辑” View 之间进行选择。第一个由student_controller 提供来管理个人数据,另一个由material_student_controller 提供来选择一些 Material 。

我找不到:

1) routes.rb 中的正确路线

路由文件

resources :students do

get 'dashboard' => 'dashboard#index'

end

2) session_controller 中正确的“redirect_to”调用仪表盘

session_controller.rb
class SessionsController < ApplicationController

def create
login from omniauth blahblahblah
redirect_to :controller => 'dashboard', :action => 'index', :id => user.as_user_id
end
end

选择页面称为“仪表板”,由仪表板 Controller 提供
class DashboardController < ApplicationController

def index

end

end

你能帮我吗?

非常感谢提前

尼古拉斯

最佳答案

在routes.rb

resources :students
resources :dashboard, :only => [:index]

在行动
redirect_to dashboard_path

关于ruby-on-rails - Rails redirect_to 选择页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20023517/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com