mvc framework ui component understand.

时间:2024-10-22 17:07:32

mvc:

.htm是v,   context和contex中的contextNode 是m,  view controller, custom controller ,component controller是c

1 个window有多个view, 一个view一个context,一个context有多个contextNode,一个contextNode有多个 attribute。view中的每个data field对应contextNode中每个attribute。

2: 一个viewSets包含多个vierSet,每个vierSet相当于一个page(一个页面)。

一个viewSet包含多个viewArea(一页中的一块儿,画出一块儿区域)。一个viewArea包含多个view,这些view组合成这一小块区域的具体显示。

3:BOL: 业务对象的一些数据结构 for the CRM WebClient session。

VIEW 中的model 和 BOL做映射。

Each data field on a view visualizes an attribute of a context node. Each attribute of the context node is connected to a field in a BOL structure.

view显示层的字段(即htm中的字段)是context node的一个属性。context node的一个属性 和 bol 数据结构(structure)中的字段相对应。

4: GenIL: Generic Interaction Layer

GenIL Model and Implementation Classes connecting BOL to CRM APIs

GENIL模型和实现类将BOL和CRM APIs连接起来。

5: Context 的实现类是view的控制器类的一个属性。

mvc framework ui component understand.