Rake路由'匹配'映射到错误的操作

时间:2013-02-21 21:47:01

标签: ruby-on-rails ruby rails-routing

我的问题与使用命名路由映射到控制器/操作有关。我正在尝试将'/ profile'映射到'customers#show'。我的路线文件如下所示:

    root :to => 'pages#home'

  ## named routes
  match "profile" => "customers#show", :as => 'profile'
  match 'signin' => 'sessions#new', :as => 'signin'
  match 'signout' => 'sessions#destroy', :as => 'signout'

  resources :customers do
    member do 
      get 'add_card'
      post 'submit_card'
    end
  end


  resources :payments, :only => [:show, :new]
    delete  'payments/delete_recurring_payment'
    post    'payments/submit_non_recurring'
    post    'payments/submit_recurring'

  resources :sessions, :only => [:create, :destroy, :new] 

运行'rake routes'给了我这个:

                         root        /                                            pages#home
                      profile        /profile(.:format)                           customers#show
                       signin        /signin(.:format)                            sessions#new
                      signout        /signout(.:format)                           sessions#destroy
            add_card_customer GET    /customers/:id/add_card(.:format)            customers#add_card
         submit_card_customer POST   /customers/:id/submit_card(.:format)         customers#submit_card
                    customers GET    /customers(.:format)                         customers#index
                              POST   /customers(.:format)                         customers#create
                 new_customer GET    /customers/new(.:format)                     customers#new
                edit_customer GET    /customers/:id/edit(.:format)                customers#edit
                     customer GET    /customers/:id(.:format)                     customers#show
                              PUT    /customers/:id(.:format)                     customers#update
                              DELETE /customers/:id(.:format)                     customers#destroy
                  new_payment GET    /payments/new(.:format)                      payments#new
                      payment GET    /payments/:id(.:format)                      payments#show

这是我难倒的地方。当我转到localhost:3000 / profile时,我收到路由错误,说:

No route matches {:action=>"edit", :controller=>"customers"}

这看起来很奇怪,因为由于我将客户声称为资源,确实存在“客户编辑”的路径。

然而,当我去'localhost:3000 / signin'时,我会被路由到'customers#show',这是我想要'/ profile'路由到的地方。

似乎我的路线文件中的路线是“一次性”但我不明白为什么。任何帮助将不胜感激。

由于

更新1:添加我的客户控制器

   class CustomersController < ApplicationController
  layout "payments_layout"

  def show
    @customer = current_user
    get_account_info(@customer)
    get_payment_history(@customer, 10)
  end

  def new
     @title = 'Create an account'
     @customer = Customer.new
  end

  def edit
    @customer = current_user
    get_account_info(@customer)
  end

  def update
    @customer = current_user
    if @customer.update(params[:customer])
      redirect_to @customer
    else
      @card_message = "Use this form to add a credit card to your account.  You must have a credit card associated with your account in
                      in order to make payments on our system."
      get_account_info(@customer)
      render 'edit'
    end
  end

  def create
   @customer = Customer.new(params[:customer])
   if @customer.save_and_get_stripe_id
     sign_in(@customer)
     redirect_to @customer   
   else
     @title = 'Create an account'
     render 'new'
   end
  end

  def add_card
    @customer = current_user
    get_account_info(@customer)
    @card_message = "Use this form to add a credit card to your account.  You must have a credit card associated with your account in
                    in order to make payments on our system."
  end

  def submit_card
    @customer = current_user
    res = @customer.add_or_update_card(params)
    if res
      redirect_to @customer
    else
      @error = res
      customer.get_account_info(@customer)
      render 'add_card'
    end
  end

end

1 个答案:

答案 0 :(得分:0)

检查您的观点。

您是否有编辑用户个人资料的链接?

看起来你实际上是路由到正确的控制器和操作但是有一些rake无法路由的链接,例如您没有将ID传递给edit_customer_path链接。