我真的很喜欢RABL,但似乎它会使.rabl
个文件混乱我的视图文件夹。我真的希望理想情况下有一个单独的API
视图目录,所以它就像这样:
app/
views/
customers/
index.html.erb
show.html.erb
......
api/
v1/
customers/
index.json.rabl
show.json.rabl
实现这一目标的最佳方法是什么?我正在使用本教程:
http://railscasts.com/episodes/350-rest-api-versioning
设置版本控制但不支持RABL。我在app/controllers/api/v1/customers_controller.rb
中尝试了这个:
module Api
module V1
class CustomersController < ApplicationController
respond_to :json
def index
@customers = Customer.search(params[:page])
Rabl::Renderer.json(@customers, 'api/v1/customers/index')
end
end
end
end
但正如预期的那样似乎没有用。
答案 0 :(得分:5)
有同样的问题。并通过在RABL初始化程序中添加它来解决它
# config/initializers/rabl_init.rb
require 'rabl'
Rabl.configure do |config|
config.view_paths = [Rails.root.join('app', 'views')]
end
如果您想放弃此行Rabl::Renderer.json(@customers, 'api/v1/customers/index')
,只需将配置更改为config.view_paths = [Rails.root.join('app', 'views', 'api', 'v1')]
即可。在控制器中它会自动链接它。
希望这有帮助
答案 1 :(得分:0)
从我所看到的,这应该有效。我做的几乎都是一样的。你得到了什么错误?