我们正在使用Trailblazer构建Rails4应用程序。我之前从未与Trailblazer合作,我对如何做事感到困惑。
我们正在建立拍卖网站。我以前使用传统的控制器,这个路由端点工作正常:
def bill
@profile = Profile.find_by user_id: current_user_id
@current_order = Order.order(created_at: :desc).find_by(user_id: current_user_id)
@batch = @current_order.batch
if @batch.nil?
puts "There was no batch linked to the current order of #{@current_order.id}"
flash[:error] = "We are sorry, but we could not determine which batch your order belongs to."
else
@price_shown_to_customer = @batch.price + ENV["FUELBID_FEE_PER_GALLON"].to_f
@amount = @current_order.quantity * @price_shown_to_customer
end
但现在我想使用Representer类将其创建为Trailblazer api。
所以在routes.rb中我添加了一些东西用于"费用":
namespace :api do
get '/price' => 'info#info'
post '/order' => 'orders#create'
get '/charges' => 'charges#bill'
end
我创建了这个Api,但是复制并粘贴了另一个:
module Api
class ChargesController < ApiApplicationController
respond_to :json
def bill
respond_with OpenStruct.new.extend(ChargesRepresenter)
end
end
end
我用一个简单的Representsenter测试了上面的内容,一切正常,所以到目前为止一切都很好。如果我从Representer返回简单数据,那么我可以在这里看到它:
http://localhost:3000/api/charges.json
但我需要获取current_user。这是怎么做到的?现在,这不起作用:
module ChargesRepresenter
include Roar::JSON
collection :price_shown_to_customer
def price_shown_to_customer
current_order = Order.order(created_at: :desc).find_by(user_id: current_user_id)
puts "current_order"
puts current_order.id
batch = current_order.batch
batch.price + ENV["FUELBID_FEE_PER_GALLON"].to_f
end
end
current_user_id存在于我的传统控制器中,因为我们设置了Devise,因此我的传统控制器继承了它:
class ChargesController < SecuredController
但是有没有办法在Trailblazer Representsenter中获得它?
答案 0 :(得分:1)
希望这个答案还不算太晚。
<强> 供参考: 强>
如果您需要更快速的回复,也可以将问题复制到https://gitter.im/trailblazer/chat。通常有几个人在那里闲逛。但在这里为后代发帖提问也很好。