MCPcopy Create free account
hub / github.com/alibaba/lowcode-engine / items

Method items

packages/shell/src/model/setting-field.ts:141–148  ·  view source on GitHub ↗

* 获取设置属性的 items

()

Source from the content-addressed store, hash-verified

139 * 获取设置属性的 items
140 */
141 get items(): Array<IPublicModelSettingField | IPublicTypeCustomView> {
142 return this[settingFieldSymbol].items?.map((item) => {
143 if (isCustomView(item)) {
144 return item;
145 }
146 return item.internalToShellField();
147 });
148 }
149
150 /**
151 * 设置 key 值

Callers

nothing calls this directly

Calls 3

mapMethod · 0.65
internalToShellFieldMethod · 0.65
isCustomViewFunction · 0.50

Tested by

no test coverage detected