在 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>
答案 0 :(得分:0)
您所在的范围内没有get_zipcode_by_state
方法。请仔细检查您实际上是否有该方法可用并且没有输入错字。
您可能需要重新启动服务器进程以获取lib
中的更改。