我有一个正在运行的服务,'http://localhost:4567/order_summary'
所以当我访问那个地址时,它会显示它的 JSON 表示,这就是我想要的。
现在在另一个 Rail 应用程序中,我创建了一个如此简单的控制器,以开始调用该服务并使用它的 JSON:
class PharmacyController < ApplicationController
def index
result = Typhoeus::Request::get('http://localhost:4567/order_summary')
@code = result.code
end
end
但是当我去http://localhost:3000/pharmacy/
地址时,我得到了错误
NameError in PharmacyController#index
uninitialized constant PharmacyController::Typhoeus
我应该根据那个错误来初始化它是什么?