Globalize2 问题,未定义的方法“翻译”;为了?
我已经在 Rails 应用程序上设置了 Globalize2,但是当我将翻译放在模型上时,我收到以下错误:
undefined method `translates' for
还有其他人收到此错误吗?顺便说一句,它在 3 号铁轨上。
I've set up Globalize2 on a rails app however I'm getting the following error when I put translates on the model:
undefined method `translates' for
Is anyone else getting this error? It's on rails 3 by the way.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果运行rails3,则必须使用globalize3。
您可以从 https://github.com/svenfuchs/globalize3 下载它或通过添加
gem "globalize3"
给你 Gemfile 并运行捆绑安装。
You will have to use globalize3 if you run rails3.
You can download it from https://github.com/svenfuchs/globalize3 or by adding
gem "globalize3"
to you Gemfile and running bundle install.