在 Rails 中加载示例数据
当用户在我的网站上创建新帐户时,我想将示例数据加载到他的帐户中。我可以使用固定装置轻松完成此操作,但问题是示例数据需要知道新的帐户 ID,因此我需要将其传递给固定装置,但我不知道是否可能。
这是我的想法,但我愿意接受其他为新帐户用户将示例数据加载到数据库中的最佳方法。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
哦,好吧,我找到了问题的解决方案,xianese of http://xianese.blogspot.com/2008/05/use-yaml-to-load-sample-data-into.html有一个解决方案。
oh okay, i found the solution to my problem, xianese of http://xianese.blogspot.com/2008/05/use-yaml-to-load-sample-data-into.html have a solution.
我没有使用 Fixtures,但我认为它实际上只是为了测试您的应用程序。
我还没有测试过,但我会推荐你类似 FactoryGirl 的东西。它使用起来非常简单,与 FFaker 结合使用是生成示例数据的最佳解决方案。
希望这有帮助!
快乐编码:)
I'm not using Fixtures but I think it's really just for testing your application.
I haven't tested it yet but I would recommend you something like FactoryGirl. It's pretty straightforward to use and in combination with FFaker the best solution to generate sample data.
Hope this helps!
Happy coding :)