尝试从 gem 调用方法时出现 NameError (未初始化常量)
我想在我的一个模型中使用收获的宝石。它已安装(没有问题),bundle check
表示没问题。它可以从 rails console
运行,但不知何故不能从模型运行。有什么提示吗?
def get_clients
harvest = Harvest.hardy_client('foo', 'bar', 'baz')
end
NameError (uninitialized constant HarvestForm::Harvest):
app/models/harvest_form.rb:23:in `get_clients'
app/controllers/api/v1/harvest_controller.rb:11:in `create'
I wanna use harvested gem in one of my models. It's installed (no issues), bundle check
says it's ok. It works from rails console
but somehow not from model. Any hints?
def get_clients
harvest = Harvest.hardy_client('foo', 'bar', 'baz')
end
NameError (uninitialized constant HarvestForm::Harvest):
app/models/harvest_form.rb:23:in `get_clients'
app/controllers/api/v1/harvest_controller.rb:11:in `create'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要重新启动服务器:)
You need to restart the server :)