0

demo_api_controller.rb我有类似的功能"post '/fetch_specialities'"。在这里,我正在调用以下函数"lib/facts.rb"

1) rel_date = get_rel_date('MED')
2) rel_date = get_zipcode_by_state('NY')
3) rel_date = get_specs('MED')

从这些来看,#1 工作正常并显示最新发布日期。#2 & #3 不工作。

收到以下错误:

 NoMethodError at /demo_api/fetch_specialities undefined method `get_zipcode_by_state' for #<DemoApiApp:0x4e686b1f>
4

1 回答 1

0

在您所在的范围内没有get_zipcode_by_state可用的方法。仔细检查您是否确实有该方法可用并且没有打错字。

您可能需要重新启动服务器进程以获取lib.

于 2013-09-20T13:57:01.177 回答