Rails gem - geoipcity 未包含在应用程序中

发布于 2024-09-25 14:39:43 字数 309 浏览 4 评论 0原文

我安装了 geoip_city gem,并在 irb 中测试了 gem...现在,当我在应用程序中使用 gem 时,我收到错误

uninitializedconstant ApplicationController::GeoIPCity

我猜这是因为我这样做了不添加行

require geoip_city

因此,我尝试将该行添加到我使用代码的函数中,但随后出现错误

No such file -- geoip_city

请帮忙。

I installed the geoip_city gem, and i tested the gem in irb... Now when I am using the gem in the application I get an error

uninitialized constant ApplicationController::GeoIPCity

I guessed it is because I did not add the line

require geoip_city

So I tried adding the line to the function I used the code in, but then I got the error

No such file -- geoip_city

Please help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白云不回头 2024-10-02 14:39:43

您之前需要 ruby​​gems 吗?

require 'rubygems'
require 'geoip_city'

Have your require rubygems before ?

require 'rubygems'
require 'geoip_city'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文