扩展 spree 使其具有 Shopify 的功能吗?
我是狂欢新手。我不确定是否可以扩展 spree 以获得像 Shopify 这样的功能。用户注册创建商店。他拥有那家商店的一切。每个所有者都无法编辑其他商店。
我怎样才能延长它?哪个是最好的策略?
通过数据库分片,每个商店都有自己的数据库,根据域名连接不同?
给每个表添加store_id,这样会需要改很多代码吧?
有什么想法吗?
I'm new to spree. I'm not sure whether is that possible to extend spree to have a functionality like Shopify. The user signups to create a store. He owns everything to that store. Each owner is not able to edit other stores.
How can I extend it? Which is the best strategy?
through database sharding, each store has it own database, connect to different based on domain name?
add store_id to every table, that would need to change a lot of code, right?
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以看一下这个官方扩展:
https://github.com/spree/spree-multi-domain
此扩展允许您使用相同的后端在多个域上拥有多个商店。
You can have a look at this official extension:
https://github.com/spree/spree-multi-domain
This extension allows you to have multiple stores on multiple domains using the same backend.