获取函数的错误

时间:2013-09-20 13:46:24

标签: ruby sinatra

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>

1 个答案:

答案 0 :(得分:0)

您所在的范围内没有get_zipcode_by_state方法。请仔细检查您实际上是否有该方法可用并且没有输入错字。

您可能需要重新启动服务器进程以获取lib中的更改。