* 获取指定 path 的属性模型实例, * 注:导出时,不同于普通属性,该属性并不挂载在 props 之下,而是与 props 同级 * @param path 属性路径,支持 a / a.b / a.0 等格式 * @returns
(path: string)
| 64 | * @returns |
| 65 | */ |
| 66 | getExtraProp(path: string): IPublicModelProp | null { |
| 67 | return ShellProp.create(this[propsSymbol].getProp(getConvertedExtraKey(path))); |
| 68 | } |
| 69 | |
| 70 | /** |
| 71 | * 获取指定 path 的属性模型实例值 |
no test coverage detected