0

名前空間を作成し、このrailscastで示されているようにバージョン管理された練習用の Rails アプリを作成しました。すべてが正常に機能しており、ブラウザーで json の出力を確認できます

次に、Rabl gem を追加し、rabl ビューをレンダリングしようとしましたが、ブラウザーで空の JSON 配列がレンダリングされます。

バージョン管理を機能させるために体系的に行ったことは次のとおりです

1) changed the routes file to look like this

App0828::Application.routes.draw do

 namespace :api, defaults: { format: 'json'} do
   namespace :v1 do
    resources :vendors
   end
 end

  #resources :vendors
  #root to: 'vendors#index'
end

2) The created thise files
    app/copntrollers/api/v1/vendors_controller.rb

  Inside the vendors_controller.rb I added the following code

 module Api
  module V1
  class VendorsController < ApplicationController

  class Vendor < ::Vendor
    #subclass vendor class so thatyou can extend its behaviour just for this version
    #add any functions specific to this version here
    end

  respond_to :json

  def index
    respond_with Vendor.all       
  end

  def show
    respond_with Vendor.find(params[:id])
  end
  ..........

3) Then I pointed my browser to this url "http://localhost:3000/api/v1/vendors"
   And I can see the json output in my browser

4) Then I added the rabl gem
5) restarted the server
6) Changed the above file at    app/copntrollers/api/v1/vendors_controller.rb
   from the version above to the version below

  module Api
   module V1
   class VendorsController < ApplicationController

    class Vendor < ::Vendor
      #subclass vendor class so thatyou can extend its behaviour just for this version
      #add any functions specific to this version here
    end

    respond_to :json

  def index
    render 'api/v1/index.json.rabl'
   end

  def show
    render 'api/v1/show.json.rabl'
  end

  .......
 7) I created the following files with this code:
     file: app/views/api/v1/show.json.rabl
     code:    object @vendor
              attributes :id, :name

     file: app/views/api/v1/index.json.rabl
     code:   object @vendors
             attributes :id, :name
 8) Routes file looks like this

 api_v1_vendors GET    /api/v1/vendors(.:format)   api/v1/vendors#index {:format=>"json"}

 POST   /api/v1/vendors(.:format)          api/v1/vendors#create {:format=>"json"}

 new_api_v1_vendor GET    /api/v1/vendors/new(.:format)      api/v1/vendors#new {:format=>"json"}

 edit_api_v1_vendor GET    /api/v1/vendors/:id/edit(.:format) api/v1/vendors#edit {:format=>"json"}

 api_v1_vendor GET    /api/v1/vendors/:id(.:format)      api/v1/vendors#show {:format=>"json"}
 PUT    /api/v1/vendors/:id(.:format)      api/v1/vendors#update {:format=>"json"}

 DELETE /api/v1/vendors/:id(.:format)      api/v1/vendors#destroy {:format=>"json"}

 9) Finally I went to url: "http://localhost:3000/api/v1/vendors.json"

  And all I see in the browser is an empty JSON hash: "{}"

したがって、明らかにインスタンス変数にアクセスできません。範囲外であることには問題があるようです。次に進む方法がわかりません。rabl を使用したバージョン管理の例をオンラインで見つけることができませんでした。助言がありますか?本当に感謝しています

ありがとう

4

1 に答える 1

0

インスタンス変数はどこに設定していますか?

まず、おそらく次の行が必要です: respond_to :jsonApi::ApplicationController (またはそのようなもの、基本的に Api モジュール内の他のすべてのコントローラーが継承するコントローラー)。

これらは必要ありません: render 'api/v1/index.json.rabl'.

インスタンス変数を設定するだけです:

def index
    @vendors = Vendor.all
    respond_with @vendors
end

def show
    @vendor = Vendor.find(params[:id])
    respond_with @vendor
end
于 2012-08-28T20:02:57.070 に答える