Rails 脚本错误
我编写了一个脚本来使用 Excel 页面中的值填充数据库。在脚本中,我收到错误配置
uninitialized constant Profile (NameError)
文件是我拥有的模型的名称。 Rails 看起来无法识别脚本中的我的模型。如何解决这个问题。
i wrote a script to fill a database using values from an excel page. In the script I'm getting the error
uninitialized constant Profile (NameError)
Profile is the name of a model i have. Rails looks it is not recognizing my model in the script. How can fix this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Rails 似乎没有正确初始化。
您可以发布脚本,并解释如何运行/启动它吗?
您使用哪个版本的 Rails?
如果您有一个 Rails 应用程序并且想要将任务作为脚本运行,有两种方法可以实现:
1) 通过脚本运行程序
2) 通过 rake
如果您使用 rake,则必须告诉它正确初始化您的 Rails 应用程序。
rake 任务需要位于
./lib/tasks
下,查看这些帖子,其中解释了如何执行此操作:
我有一个 Rails 任务:我应该使用 script/runner 还是 rake?
rails 3 中的 script/runner
http://guides.rubyonrails.org/active_record_querying.html
It looks like Rails doesn't get properly initialized.
Can you post the script, and explain how you run / start it?
Which version of Rails do you use?
If you have a rails application and you want to run a task as a script, there are two ways to do it:
1) via script runner
2) via rake
If you use rake, you have to tell it to initialize your Rails application properly.
The rake tasks need to be under
./lib/tasks
Check out these Posts, which explain how to do it:
I have a Rails task: should I use script/runner or rake?
script/runner in rails 3
http://guides.rubyonrails.org/active_record_querying.html