"trips"}-6ren"> "trips"}-我们正在使用 Ruby on Rails 3.2 开发社交网络原型(prototype)。该系统是为旅行者打造的,因此每个用户必然有很多次旅行。我们创建了旅行模型,并分别在旅行模型和用户模型中设置了与-6ren">
gpt4 book ai didi

ruby-on-rails - Ruby On Rails - 路由错误 - 没有路由匹配 { :action= >"show", :controller= >"trips"}

转载 作者:太空宇宙 更新时间:2023-11-03 18:12:44 25 4
gpt4 key购买 nike

我们正在使用 Ruby on Rails 3.2 开发社交网络原型(prototype)。该系统是为旅行者打造的,因此每个用户必然有很多次旅行。我们创建了旅行模型,并分别在旅行模型和用户模型中设置了与“belongs_to”和“has_many”的关联。我们创建了一个表单来为特定用户创建新行程,但是当我们提交表单时系统返回此错误:

Routing Error
No route matches {:action=>"show", :controller=>"trips"}

我们知道行程已成功创建,因为如果我们输入 URL http://localhost:3000/users/1/trips/1我们看到创建的行程。

这是代码:

旅行.rb

class Trip < ActiveRecord::Base
attr_accessible :name, :departure, :arrive, :trip_objects

belongs_to :user

default_scope order: 'trips.created_at DESC'
validates :user_id, presence: true
validates :name, :departure, :arrive, :trip_objects, presence: true
end

trips_controller.rb

def create
# refine the trip variable content with the data passed by the sign up form
@trip = current_user.trips.build(params[:trip])
if @trip.save
# handle a successful save
flash[:success] = 'Trip created!'
redirect_to user_trip_path
else
@trip = []
redirect_to home_path
end
end

def index
@user = User.find(params[:user_id])
# get all her trips
@trips = @user.trips.paginate(page: params[:page])
end

进入routes.rb

resources :users do
member do
get :info
end
resources :trips, only: [:new, :create, :index, :show, :destroy]
end

此外,在 trips_controller.rb - create 操作中,如果我们重定向到 user_trips_path 而不是 >user_trip_path 我们根据路线正确获取了已创建行程的索引。

这是路线

    info_user GET    /users/:id/info(.:format)           users#info
user_trips GET /users/:user_id/trips(.:format) trips#index
POST /users/:user_id/trips(.:format) trips#create
new_user_trip GET /users/:user_id/trips/new(.:format) trips#new
user_trip GET /users/:user_id/trips/:id(.:format) trips#show
DELETE /users/:user_id/trips/:id(.:format) trips#destroy
users GET /users(.:format) users#index
POST /users(.:format) users#create
new_user GET /users/new(.:format) users#new
edit_user GET /users/:id/edit(.:format) users#edit
user GET /users/:id(.:format) users#show
PUT /users/:id(.:format) users#update
DELETE /users/:id(.:format) users#destroy

你知道这个问题吗?我们是 Rails 的新手,因此我们将不胜感激。非常感谢!

最佳答案

如您所见,user_trip_path 需要 :id 和 :user_id。

user_trip GET /users/:user_id/trips/:id(.:format) trips#show

def create
# refine the trip variable content with the data passed by the sign up form
@trip = current_user.trips.build(params[:trip])
if @trip.save
# handle a successful save
flash[:success] = 'Trip created!'
redirect_to user_trip_path(id: @trip, user_id: @user)
else
@trip = []
redirect_to home_path
end
end

解决这个问题的另一种方法是使用浅嵌套:

resources :users, shallow: true do
resources :trips
end

它为您提供嵌套在用户下的行程的集合路线(新建、创建、索引),但不提供单独的路线(显示、编辑、销毁)。

这让您可以改为执行 redirect_to @trip

关于ruby-on-rails - Ruby On Rails - 路由错误 - 没有路由匹配 { :action= >"show", :controller= >"trips"},我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31369881/

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