我正在从事电子商务项目,我在数据库上创建表格时几乎没有困惑。
现在我正在电子商务中创建多种产品,例如 flikart。 对于服装,我需要不同的规格(颜色,尺寸(,对于移动设备,我需要不同的规格(RAM,存储(,每种产品我都有不同的规格。
如果我在前端查看页面(如果我选择移动意味着它应该只显示基于手机的规范(。
如何为此目的创建表。
您需要研究EAV
实体属性值的概念。
您的表格可以是:
categories (id, title, parent_id, status) ; here parent_id is to handle child categories
products (id, title, description, price, status, quantity)
attributes (id, title, status) ; attribute can have colors, sizes
attributevalues (id, attribute_id, value, status) ; it contains colors's attribute_id and values can be green, red, yellow etc
attributes_products (id, product_id, attribute_id, attributevalue_id, price, sign) ; it will be attaching attribute title with options to a product also how much price add or minus in case of products attributes
如有疑问,请多问