0

指定された url のコンテンツ タイプを取得するために、コントローラーのメソッドに ajax リクエストを行う次のコードがあります。

    $("#wiki_form_url").change(function () {
        $.ajax({
            type: "GET",
            url: "/wiki_forms/content",
            data: {
                input_url: $("#wiki_form_url").val()
            },
            dataType: "text"
        }).done(function (data) {
                    // `data` contains the content-type
                    alert('Success');
                    console.log(data);
//                    alert(data);
                }).fail(function () {
                    alert("failed AJAX call");
                });
    });

content という名前の wiki_forms コントローラーにメソッドがあり、その中に私がやっているメソッドがあります:

  def content

    req = open(params[:input_url])
    render :text => req.content_type
    puts  "type is : #{req.content_type}"

  end

私のroute.rbファイルには次のものがあります:

 match "/wiki_forms/content" => 'wiki_forms#content'

しかし、ajax リクエストを実行しようとすると、エラーが発生します。私のコンソールは次のようになります:

Started GET "/wiki_forms/content?input_url=http%3A%2F%2Fwww.ofdp.org%2Fbenchmark_indices%2F25" for 127.0.0.1 at 2013-03-28 14:08:42 -0400
Processing by WikiFormsController#show as TEXT
  Parameters: {"input_url"=>"http://www.ofdp.org/benchmark_indices/25", "id"=>"content"}
  WikiForm Load (0.3ms)  SELECT "wiki_forms".* FROM "wiki_forms" WHERE "wiki_forms"."id" = ? LIMIT 1  [["id", "content"]]
Completed 500 Internal Server Error in 3ms

ActiveRecord::RecordNotFound (Couldn't find WikiForm with id=content):
  app/controllers/wiki_forms_controller.rb:23:in `show'

ajax 呼び出しで content メソッドを指定したのに、ここで show メソッドが呼び出されるのはなぜですか? これを機能させる方法は?助けてください

EDIT_1:

レーキルート

        wiki_forms GET    /wiki_forms(.:format)          wiki_forms#index
                   POST   /wiki_forms(.:format)          wiki_forms#create
     new_wiki_form GET    /wiki_forms/new(.:format)      wiki_forms#new
    edit_wiki_form GET    /wiki_forms/:id/edit(.:format) wiki_forms#edit
         wiki_form GET    /wiki_forms/:id(.:format)      wiki_forms#show
                   PUT    /wiki_forms/:id(.:format)      wiki_forms#update
                   DELETE /wiki_forms/:id(.:format)      wiki_forms#destroy
              root        /                              wiki_forms#index
wiki_forms_content        /wiki_forms/content(.:format)  wiki_forms#content
4

1 に答える 1

4

routes.rbファイルの順序は重要です。

rake routesショー

        wiki_forms GET    /wiki_forms(.:format)          wiki_forms#index
                   POST   /wiki_forms(.:format)          wiki_forms#create
     new_wiki_form GET    /wiki_forms/new(.:format)      wiki_forms#new
    edit_wiki_form GET    /wiki_forms/:id/edit(.:format) wiki_forms#edit
         wiki_form GET    /wiki_forms/:id(.:format)      wiki_forms#show
                   PUT    /wiki_forms/:id(.:format)      wiki_forms#update
                   DELETE /wiki_forms/:id(.:format)      wiki_forms#destroy
              root        /                              wiki_forms#index
wiki_forms_content        /wiki_forms/content(.:format)  wiki_forms#content

そう

         wiki_form GET    /wiki_forms/:id(.:format)      wiki_forms#show

最初に一致し:id、値文字列「content」を持つ

あなたの

match "/wiki_forms/content" => 'wiki_forms#content'

より高いroutes.rb

于 2013-03-28T18:51:01.417 に答える