我一直在浏览nativescript代码库,以了解如何为 {N} 3.0.1 更新我的一些插件,并且我看到了很多这样的类方法。
[srcProperty.setNative](value: any) {
this._createImageSourceFromSrc(value);
}
查看image-common.ts和image.android.ts的内容以查看完整源代码。
为什么从image-common.ts导出的 const 的属性在image.android.ts中使用是一种方法,为什么它们用方括号括起来?