我有一个以 API 为中心的应用程序 (/api/v1/users),它只是以 JSON 格式简单地返回所有用户。
我的问题是,如果我在控制器上调用该路由,它会返回“Timeout::Error”,这是什么问题?
class BaseController < ApplicationController
def index
return HTTParty.get('http://localhost:3000/api/v1/users').body
end
end
更新
- users_controller.rb (/api/v1/users)
- application_controller.rb
https://gist.github.com/4359591
日志