gpt4 book ai didi

ruby-on-rails - Rails 嵌套路由问题

转载 作者:行者123 更新时间:2023-12-04 06:49:50 24 4
gpt4 key购买 nike

我想为用户创建一个机制来跟踪其他最喜欢的用户,类似于 SO 最喜欢的问题。我正在使用 Rails 3.0 测试版。

为此,我有一个 User-Favorite HABTM 关系,它按预期工作:

class User < ActiveRecord::Base
has_and_belongs_to_many :favorites, :class_name => "User", :join_table => "favorites", :association_foreign_key => "favorite_id", :foreign_key => "user_id"
end

收藏夹 Controller 只需要 7 个 RESTful 方法中的 3 个来管理用户的收藏夹:
class FavoritesController < ApplicationController

# GET /favorites
# GET /favorites.xml
def index

@user = User.find(params[:user_id])
@favorites = @user.favorites.joins(:profile).order("last_name,first_name")

...

end

def create

@favorite = User.find(params[:id])
current_user.favorites << @favorite

...

end

def destroy

@favorite = User.find(params[:id])
current_user.favorites.delete(@favorite)

...

end

end

Routes.rb 文件包含路由指令:
resources :users, :except => :destroy do
resources :favorites, :only => [:index,:create,:destroy]
end

生成这些用户最喜欢的路线:
GET    /users/:user_id/favorites(.:format)            {:controller=>"favorites", :action=>"index"}
user_favorites POST /users/:user_id/favorites(.:format) {:controller=>"favorites", :action=>"create"}
user_favorite DELETE /users/:user_id/favorites/:id(.:format) {:controller=>"favorites", :action=>"destroy"}

在用户的显示 View 中,可以使用图像链接将用户 (@user) 切换为收藏夹,这按预期工作:
<% if [test if user is a favorite] %>

# http://localhost:3000/favorites/destroy/:id?post=true
<%= link_to image_tag("favorite.png", :border => 0), :controller => :favorites, :action => :destroy, :post=>true, :id => @user %>

<% else %>

# http://localhost:3000/favorites/create/:id?post=true
<%= link_to image_tag("not-favorite.png", :border => 0), :controller => :favorites, :action => :create, :post=>true, :id => @user %>

<% end %>

但是,在 current_user 的收藏夹索引 View 中,每个收藏夹用户的链接:
# http://localhost:3010/users/4/favorites/3?post=true
<%= link_to image_tag("favorite.png", :border => 0), :controller => :favorites, :action => :destroy, :id => favorite, :post=>true %>

生成一个错误,内容如下:

没有路由匹配“/users/4/favorites/3”

问题:
  • 我是否正确指定了我的路由?似乎创建和销毁路由只需要收藏夹的 id,因为收藏夹的“所有者”始终是 current_user。
  • 如果我只是在 Show View 中引用 Controller/Action,我是否还需要创建/销毁路由?
  • 为什么索引 View 中的 link_to 不能正常工作?
  • 是否可以对整体方法进行任何改进?
  • 最佳答案

    你的路由看起来不错。

    不过,我认为您的 link_to 有问题。一方面,RESTful 方式不是使用 :controller 和 :action 参数指定 URL。正确的方法是使用生成的 URL 方法,例如 user_favorite_path。此外,您需要在针对销毁操作时指定 :method 参数。这就是我认为 link_to 应该是这样的:
    <%= link_to image_tag("favorite.png", :border => 0), user_favorite_path(@user, @favorite), :method => :delete %>
    我相信它说没有路由匹配该 URL 的原因是因为您没有将 :method 指定为 :delete。

    关于ruby-on-rails - Rails 嵌套路由问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3290792/

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