方法不允许使用rails

时间:2015-07-24 09:25:59

标签: ruby-on-rails ruby ajax

我正在对控制器进行ajax调用。我的Ajax调用是:

$.ajax({
  type:'POST',
  url:'/chefUI/configure/save_roles',
  data:{ app_name: appname, role_list: role_list},...});

我的路线文件是:

scope "/chefUI" do
    post '/configure/save_roles', to: 'admin#update_app_roles'
end

我的控制器有:

def update_app_roles
    begin
      application_name = params["app_name"]
      puts application_name
      role_name_list = params["role_list"]
      puts role_name_list
      if application_name and !role_name_list.empty?
      ...

我正在获得405 Method Not Allowed响应。我不确定这可能发生的原因是什么。有人能帮我弄清楚我在这里缺少什么吗?我不知道为什么我的帖子请求甚至没有到达我的控制器。

更新

日志文件

Started GET "/chefUI/configure/app_roles?app_name=MFRH" for 127.0.0.1 at 2015-07-24 15:08:51 +0530 Processing by AdminController#app_roles as */*   Parameters: {"app_name"=>"MFRH"}   [1m[35mUser Load (1.0ms)[0m  SELECT  "users".* FROM "users" WHERE "users"."username" = $1 LIMIT 1  [["username", "an9v0s7"]]   [1m[36mApplication Load (2.0ms)[0m  [1mSELECT  "applications".* FROM "applications" WHERE (lower(app_name) = 'mfrh')  ORDER BY "applications"."id" ASC LIMIT 1[0m   [1m[35mRole Load (1.0ms)[0m  SELECT "roles".* FROM "roles" INNER JOIN "application_roles" ON "roles"."id" = "application_roles"."role_id" WHERE "application_roles"."application_id" = $1  ORDER BY roles.name ASC  [["application_id", 1]] Completed 200 OK in 217ms (Views: 0.0ms | ActiveRecord: 5.0ms)


Started POST "/chefUI/configure/save_roles" for 127.0.0.1 at 2015-07-24 15:08:57 +0530

另一个更新:

我刚刚发现我的所有帖子请求都得到了回应。他们之前都在工作,我在新模型上创建了一堆,突然之间都没有工作。

2 个答案:

答案 0 :(得分:2)

我删除了application.rb中的以下行,问题得到了解决。 config.assets.prefix="/chefUI"

我不明白config.assets.prefix与POST请求有什么关系,但这解决了我的问题。

很想明白这个原因。

答案 1 :(得分:1)

这个问题比以前想的要深一些。

当路径路径和资产目录位于同一子目录中时,Rails不喜欢。

在发布帖子请求时,您将获得method not allowed。问题是路径和资产目录不能重叠。问题特别在于该路径中的POST个请求。我假设在rails中的某个地方,他们必须禁用资产目录的所有非GET请求。

scope "/chefUI" do
    post '/configure/save_roles', to: 'admin#update_app_roles'
end

config.assets.prefix="/chefUI/assets"
                                ^ You need this part so they don't overlap.

在下面这个非常简单的应用中,您将收到method not allowed错误。因为路径/welcome用于路由和资产前缀。

档案:config/environment/development.rb

config.assets.prefix = '/welcome'

档案:config/routes.rb

resources :welcomes, path: 'welcomes', only: ['index', 'create']

档案:app/controllers/welcomes_controller.rb

class WelcomesController < ApplicationController
  def index
    @welcome = 'hello';
  end

  def create
    @welcome = 'world';
  end
end

档案:app/views/welcomes/index.html.rb

<%= form_for(@welcome) do |f| %>
    <%= f.submit 'Submit' %>
<% end %>

档案:app/views/welcomes/create.html.rb

<h1>Welcomes#create</h1>
<p>Find me in app/views/welcomes/create.html.erb</p>