Rails 脚本错误

发布于 2024-12-17 04:48:21 字数 171 浏览 0 评论 0原文

我编写了一个脚本来使用 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 技术交流群。

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

发布评论

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

评论(1

深爱成瘾 2024-12-24 04:48:21

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

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