Rails Spree 要求在没有示例数据的情况下引导后创建帐户
我正在为我的电子商务网站使用 Spree Rails gem。在开发过程中我一直在使用示例数据。使用“rake db:bootstrap”重新引导数据库并且这次不加载示例数据后,每当我访问网站上的任何页面时,它都会将我重定向到/users/new。
我已删除所有自定义路由规则。
有什么想法为什么会发生这种情况吗?
I'm using the Spree Rails gem for my ecommerce site. During development I've been using the sample data. After re-bootstrapping the database using "rake db:bootstrap" and this time NOT loading sample data, any time I go to any page on my site, it redirects me to /users/new.
I have removed all my custom route rules.
Any ideas why this is happening?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
事实证明(我很确定)问题是由于“用户”表中没有记录,因为 Spree 显然需要至少一个管理员角色的用户。
Turns out that (I'm pretty sure) the problem was due to there being no records in the 'users' table, as Spree apparently requires at least one user of role admin.