我在用户控制器中得到了这些操作
class UsersController < ApplicationController
def index #default action
...
end
def new #default action
...
end
def another_new
...
end
def create
...
end
def another_create
...
end
end
我希望能够
/users/another_new
从某种链接:method => :another_create
调用/users/another_new
我得到了以下 config/routes.rb
get '/users/another_new' :to => 'users#another_new'
resources :users
我的问题是这是否是添加的正确方法get
以及如何添加 another_create 方法。