java eav_动态自定义字段属性–Magento的EAV模型 | 学步园

EAV : Entity - Attribute - Value 的缩写,是数据库模型的一种,使用eav建模的好处是可以动态为数据模型增加或移除属性。

1. 问题提出:

假设需要定义一个实体Customer的信息,通常我们只要定义一个表为customer,并定义相应的属性即可。倘若某天需要为customer增加一个新的属性如“毕业学校”,那么就需要更改表的结构。

如果使用EAV模型则不必改变表结构。

2. Magento的EAV模型定义:

在Magento中,EAV模型相关的表定义有:

Java代码

eav_attribute

eav_attribute_group

eav_attribute_option

eav_attribute_option_value

eav_attribute_set

eav_entity

eav_entity_attribute

eav_entity_datetime

eav_entity_decimal

eav_entity_int

eav_entity_store

eav_entity_text

eav_entity_type

eav_entity_varchar

eav_attribute

eav_attribute_group

eav_attribute_option

eav_attribute_option_value

eav_attribute_set

eav_entity

eav_entity_attribute

eav_entity_datetime

eav_entity_decimal

eav_entity_int

eav_entity_store

eav_entity_text

eav_entity_type

eav_entity_varchar

现在让我来观察最重要的三张表

eav_entity_type,eav_entity_attribute,eav_attribute

1) eav_entity_type表用来定义实体的基本信息。

Sql代码

mysql>select*fromeav_entity_typewhereentity_type_id=1;

+----------------+------------------+-------------------+-----------------+-----------------+

| entity_type_id | entity_type_code | entity_model      | attribute_model | entity_table    | +----------------+------------------+-------------------+-----------------+-----------------+

|              1 | customer         | customer/customer |                 | customer/entity |

+----------------+------------------+-------------------+-----------------+-----------------+

mysql> select * from eav_entity_type where entity_type_id=1;

+----------------+------------------+-------------------+-----------------+-----------------+

| entity_type_id | entity_type_code | entity_model | attribute_model | entity_table | +----------------+------------------+-------------------+-----------------+-----------------+

| 1 | customer | customer/customer | | customer/entity |

+----------------+------------------+-------------------+-----------------+-----------------+

2). eav_entity_attribute表用来定义实体customer模型包含哪些属性

Sql代码

mysql>select*fromeav_entity_attributewhereentity_type_id='1';

+---------------------+----------------+------------------+--------------------+--------------+

| entity_attribute_id | entity_type_id | attribute_set_id | attribute_group_id | attribute_id |

+---------------------+----------------+------------------+--------------------+--------------+

|                   1 |              1 |                1 |                  1 |            1 |

|                   2 |              1 |                1 |                  1 |            2 |

|                   3 |              1 |                1 |                  1 |            3 |

|                   4 |              1 |                1 |                  1 |            4 |

|                   5 |              1 |                1 |                  1 |            5 |

|                   6 |              1 |                1 |                  1 |            6 |

|                   7 |              1 |                1 |                  1 |            7 |

|                   8 |              1 |                1 |                  1 |            8 |

|                   9 |              1 |                1 |                  1 |            9 |

|                  10 |              1 |                1 |                  1 |           10 |

|                  11 |              1 |                1 |                  1 |           11 |

|                  12 |              1 |                1 |                  1 |           12 |

|                  13 |              1 |                1 |                  1 |           13 |

|                  14 |              1 |                1 |                  1 |           14 |

|                  15 |              1 |                1 |                  1 |           15 |

|                  16 |              1 |                1 |                  1 |           16 |

+---------------------+----------------+------------------+--------------------+--------------+

mysql> select * from eav_entity_attribute where entity_type_id='1';

+---------------------+----------------+------------------+--------------------+--------------+

| entity_attribute_id | entity_type_id | attribute_set_id | attribute_group_id | attribute_id |

+---------------------+----------------+------------------+--------------------+--------------+

| 1 | 1 | 1 | 1 | 1 |

| 2 | 1 | 1 | 1 | 2 |

| 3 | 1 | 1 | 1 | 3 |

| 4 | 1 | 1 | 1 | 4 |

| 5 | 1 | 1 | 1 | 5 |

| 6 | 1 | 1 | 1 | 6 |

| 7 | 1 | 1 | 1 | 7 |

| 8 | 1 | 1 | 1 | 8 |

| 9 | 1 | 1 | 1 | 9 |

| 10 | 1 | 1 | 1 | 10 |

| 11 | 1 | 1 | 1 | 11 |

| 12 | 1 | 1 | 1 | 12 |

| 13 | 1 | 1 | 1 | 13 |

| 14 | 1 | 1 | 1 | 14 |

| 15 | 1 | 1 | 1 | 15 |

| 16 | 1 | 1 | 1 | 16 |

+---------------------+----------------+------------------+--------------------+--------------+

3), 由上表推出customer实体包含16个属性,下面的语句查看每个属性的具体定义

Sql代码

mysql>select*fromeav_attributewhereattribute_id<=16andattribute_id>=1 ;

+--------------+----------------+------------------+--------------+

| attribute_id | entity_type_id | attribute_code   | backend_type |

+--------------+----------------+------------------+--------------+

|            1 |              1 | website_id       | static|

|            2 |              1 | store_id         | static|

|            3 |              1 | created_in       | varchar|

|            4 |              1 | prefix           | varchar|

|            5 |              1 | firstname        | varchar|

|            6 |              1 | middlename       | varchar|

|            7 |              1 | lastname         | varchar|

|            8 |              1 | suffix           | varchar|

|            9 |              1 | email            | static|

|           10 |              1 | group_id         | static|

|           11 |              1 | dob              | datetime     |

|           12 |              1 | password_hash    | varchar|

|           13 |              1 | default_billing  | int|

|           14 |              1 | default_shipping | int|

|           15 |              1 | taxvat           | varchar|

|           16 |              1 | confirmation     | varchar|

+--------------+----------------+------------------+--------------+

mysql> select * from eav_attribute where attribute_id<=16 and attribute_id>=1 ;

+--------------+----------------+------------------+--------------+

| attribute_id | entity_type_id | attribute_code | backend_type |

+--------------+----------------+------------------+--------------+

| 1 | 1 | website_id | static |

| 2 | 1 | store_id | static |

| 3 | 1 | created_in | varchar |

| 4 | 1 | prefix | varchar |

| 5 | 1 | firstname | varchar |

| 6 | 1 | middlename | varchar |

| 7 | 1 | lastname | varchar |

| 8 | 1 | suffix | varchar |

| 9 | 1 | email | static |

| 10 | 1 | group_id | static |

| 11 | 1 | dob | datetime |

| 12 | 1 | password_hash | varchar |

| 13 | 1 | default_billing | int |

| 14 | 1 | default_shipping | int |

| 15 | 1 | taxvat | varchar |

| 16 | 1 | confirmation | varchar |

+--------------+----------------+------------------+--------------+

所以,使用上述的模型,一旦有CUSTOMER属性定义的添加和删除,只需要增加或删除 eav_entity_attribute的记录即可

3. 使用EAV模型

现在,在Magento系统注册一个新的用户,看看实例数据如何存放在数据库

Sql代码

mysql>select*fromcustomer_entity            ;

+-----------+----------------+------------------+------------+--------------------+

| entity_id | entity_type_id | attribute_set_id | website_id | email              |

+-----------+----------------+------------------+------------+--------------------+

|         1 |              1 |                0 |          1 | koda.guo@gmail.com |

+-----------+----------------+------------------+------------+--------------------+

mysql> select*fromcustomer_entity_varchar    ;

+----------+----------------+--------------+-----------+-------------------------------------+

| value_id | entity_type_id | attribute_id | entity_id | value                               |

+----------+----------------+--------------+-----------+-------------------------------------+

|        1 |              1 |            5 |         1 | Koda                                |

|        2 |              1 |            7 |         1 | Guo                                 |

|        4 |              1 |            3 |         1 | DefaultStoreView|

|        5 |              1 |           12 |         1 | 2256e441b74ab3454a41c821f5de1e9d:9s |

+----------+----------------+--------------+-----------+-------------------------------------+

mysql> select * from customer_entity ;

+-----------+----------------+------------------+------------+--------------------+

| entity_id | entity_type_id | attribute_set_id | website_id | email |

+-----------+----------------+------------------+------------+--------------------+

| 1 | 1 | 0 | 1 | koda.guo@gmail.com |

+-----------+----------------+------------------+------------+--------------------+

mysql> select * from customer_entity_varchar ;

+----------+----------------+--------------+-----------+-------------------------------------+

| value_id | entity_type_id | attribute_id | entity_id | value |

+----------+----------------+--------------+-----------+-------------------------------------+

| 1 | 1 | 5 | 1 | Koda |

| 2 | 1 | 7 | 1 | Guo |

| 4 | 1 | 3 | 1 | Default Store View |

| 5 | 1 | 12 | 1 | 2256e441b74ab3454a41c821f5de1e9d:9s |

+----------+----------------+--------------+-----------+-------------------------------------+

从上表看到customer_entity 和customer_entity_varchar用来存放相应属性的实际输入值。如:

Koda, Guo分别属性编号5,7即firstname和lastname实际值

和customer实体定义相对应的实例存放的相关表包括:

Java代码

customer_entity

customer_entity_datetime

customer_entity_decimal

customer_entity_int

customer_entity_text

customer_entity_varchar

customer_entity

customer_entity_datetime

customer_entity_decimal

customer_entity_int

customer_entity_text

customer_entity_varchar

总结

了解Magento的EAV模型结构是扩展Magento必须的知识。 其意义在于,我们常常需要扩展Magento某些实体的属性,或者创建自定义的eav模型实例。希望本文对你有所启示。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/559967.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

java 对象视图框架_Stripes视图框架Java对象属性验证和prototype.js Ajax的测试

Stripes视图框架Java对象属性验证&#xff0c;它允许对字段设置是否必须填写&#xff0c;对数字大小进行限制等。我用prototype.js Ajax 将验证后的数据及时地展示出来&#xff0c;下面来看程序。1、编写User实体类此用户共三个属性&#xff1a; name、email、age.package com.…

java中unicode显示乱码_Java 已知Java系统编码是GBK,jtextarea从一编码为Unicode的文本中读取数据,出现乱码,怎么正常显示?...

Java 已知Java系统编码是GBK&#xff0c;jtextarea从一编码为Unicode的文本中读取数据&#xff0c;出现乱码&#xff0c;怎么正常显示&#xff1f;关注:159 答案:2 mip版解决时间 2021-02-03 12:45提问者鉨瞞着所囿亾&#xff0c;爱着誰2021-02-02 16:35我觉得jtextarea中读取…

java中按钮的接口_Java接口基础

接口(interface)1.接口体中包含常量的声明(没有变量)和抽象方法两部分。接口体中只有抽象方法&#xff0c;没有普通的方法&#xff0c;而且接口体中所有的常量访问权限一定是public&#xff0c;而且是static常量(允许省略public、final和static修饰符)&#xff0c;所有的抽象方…

python之if经典语句_Python之if语句、字典

if语句1>利用if语句判断用户是否被禁言banned_users.pybanned_users[Lily,jonh,Susan]userLilyif user not in baned_users:print(user.title()",you can post a response if you wish.")######2>if else 语句age17if age>18:print("You are old enoug…

java 线程加载类_java JVM-线程上下类加载器

public class One {public static void main(String[] args) throws Exception {ClassLoader loaderOne.class.getClassLoader();System.out.println(loader);//获得当前线程的上下文加载器&#xff0c;未改变前和第一种是一样的ClassLoader loader2Thread.currentThread().get…

catalog move.php,catalog.php

/*** WK 列出所有分类及品牌* * * 版权所有 2005-2012 QQ 80342014&#xff0c;并保留所有权利。* &#xff1b;* ----------------------------------------------------------------------------* 这不是一个自由软件&#xff01;您只能在不用于商业目的的前提下对程序代码进…

php get 数据类型,PHP基础-数据类型-integet

integer 是集合 ℤ {…, -2, -1, 0, 1, 2, …} 中的某个数。语法整型值可以使用十进制&#xff0c;十六进制&#xff0c;八进制或二进制表示&#xff0c;前面可以加上可选的符号(- 或者 )。 可以用 负运算符 来表示一个负的integer。二进制表达的 integer 自 PHP 5.4.0 起可用…

php怎么seo,怎样学习seo

学习seo的方法&#xff1a;1、从搜索引擎原理开始&#xff0c;学习seo要先从搜索引擎原理开始&#xff1b;2、多思考&#xff1b;3、学习seo要多看高质量的seo教程&#xff1b;4、多和seo高手交流&#xff0c;经常听听大神的seo理论&#xff0c;集百家之所长&#xff0c;这样会…

php callable 参数,php 利用反射执行callable

现在有一个这样的函数我想利用反射&#xff0c;再用call_user_func执行&#xff0c;当然&#xff0c;我不是白痴和多此一举&#xff0c;主要是因为上面的$func是一个数组中的值&#xff0c;我现在要写一个解析数据函数&#xff0c;会遇到$func&#xff0c;写法如下&#xff1a;…

php ip 短时间 重复,php 限制同一个IP 一段时间不能评论多次,能给我详细解决的...

php 限制同一个IP 一段时间不能评论多次,能给我详细解决的mip版 关注:163 答案:3 悬赏:30解决时间 2021-01-25 15:27已解决2021-01-25 05:54php 限制同一个IP 一段时间不能评论多次,能给我详细解决的最佳答案2021-01-25 06:49在评论的操作中&#xff0c;都需要记录用户ip地址…

java 8 list,JAVA8 ListListInteger list中再装一个list转成一个list操作

我就废话不多说了&#xff0c;大家还是直接看代码吧~List collect IntStream.range(1, 10).boxed().collect(Collectors.toList());List collect1 IntStream.range(10, 20).boxed().collect(Collectors.toList());List> lists new ArrayList<>();lists.add(collect…

matlab中创建一个工程,从文件夹创建新工程

从文件夹创建新工程如果您有许多文件并希望将它们整理为一个工程(无论是否进行源代码管理)&#xff0c;请按照以下步骤创建一个新工程。使用 Simulink Start Page 中的 Folder to Project 模板可轻松将一个文件夹转换为工程。该模板会自动将您的文件添加到工程中&#xff0c;并…

局部遮荫光伏matlab,一种基于随机蛙跳全局搜索算法的局部阴影光伏阵列MPPT控制的制作方法...

本发明涉及一种局部阴影光伏阵列多峰MPPT控制方法&#xff0c;特别涉及一种基于随机蛙跳全局搜索算法的局部阴影光伏列阵多峰MPPT控制。背景技术&#xff1a;伴随太阳能发电的普及&#xff0c;光伏阵列的运行环境变的越来越复杂&#xff0c;局部遮荫导致光伏阵列输出特性曲线出…

打靶法matlab求边值问题代码,数学实验“微分方程组边值问题数值算法(打靶法,有限差分法)”实验报告(内含matlab程序)...

实验二十七实验报告一、实验名称&#xff1a;微分方程组边值问题数值算法(打靶法&#xff0c;有限差分法)。二、实验目的&#xff1a;进一步熟悉微分方程组边值问题数值算法(打靶法&#xff0c;有限差分法)。三、实验要求&#xff1a;运用Matlab/C/C/Java/Maple/Mathematica 等…

php symfony 安装,Symfony4中文文档: 安装和设置Symfony框架

安装和设置Symfony框架要创建新的Symfony应用程序, 首先确保使用的是PHP7.1 或更高版本并且已经安装Componser. 如果未安装, 请首先在系统上全局安装Componser. 如果你想使用虚拟机(VM), 请查看Homestead通过运行以下命令来创建新项目:$ composer create-project symfony/websi…

matlab变参传函,什么是传递函数的增益

公告&#xff1a; 为响应国家净网行动&#xff0c;部分内容已经删除&#xff0c;感谢读者理解。话题&#xff1a;什么是传递函数的增益?它是干什么的?怎么求?回答&#xff1a;我认为楼上的是错误的G(S)Y(s)/R(s) K(as1)(bs1)(ms1)/((ns1)(ps1).(qs1) )这样的K才是控制论里面…

matlab单元数组和结构,Matlab使用单元数组和结构数组

Matlab使用字符串数组、单元数组(cell array)和结构数组 (struct array)要在MALTAB中实现比较复杂的编程&#xff0c;就不能不用单元数组(cell array)和结构数组(structarray)。而且在Matlab中实现struct比C中更为方便。MATLAB字符串数组的创建与运算字符串数组主要用于可视化编…

matlab sar 斑马图,星载合成孔径雷达(SAR)斑马图仿真与研究

收稿日期:2002 - 04 - 22   第 20 卷  第 5 期 计  算  机  仿  真 2003 年 5 月    文章编号:1006 - 9348(2003)05 - 0123 - 04 星载合成孔径雷达( SAR)斑马图仿真与研究 朱力1 ,于立2 (1. 南京理工大学 ,江苏南京 210094 ;2. 南京电子技术研究所 ,江苏 南京 210013)…

matlab等高线二维加数字,matlab绘制二维等高线

第5章 MATLAB绘图 5.1 二维数据曲线图 5.2 其他二维图形 5.3 隐函数绘图 5.4 三维图形 5.5 图形修饰处理 5.6 图像处理与动画制作 5.1 二维数据曲线图 5......绘图 一.实验目的掌握 matlab 二维图形和三维图形的绘制方法,并会对图形进行处理,掌握符号函数(显 函数、隐函数和参数…

php订阅与推送,PHP用户关键词订阅推送文章功能

具体要求&#xff1a;PHP用户关键词订阅推送文章功能采用语言原生PHP5.6数据库mysql需求会员才能设置关键词推送比如用户设置了关键词比如‘电脑采购’和设置了匹配标题&#xff0c;如果有文章标题包含这个关键词&#xff0c;那就推送文章{文章id}比如用户设置了关键词比如‘电…