Nativescript Typescript 错误 属性 不存在

Nativescript Typescript error property does not exist

您好,我正在尝试在打字稿 xml 页面中获取图像元素,并以编程方式将其设置为 imageSource 属性。

在示例中我发现它是这样完成的:

image = page.getViewById("id");
image.imageSource = newImageSource;

我在使用 typescript 时遇到的问题是

error 'imageSource' does not exist on type 'View'

我不知道如何解决这个问题。有什么想法吗?

image = <Image> page.getViewById('whatever'); 应该解决类型问题。确保导入图像模块,以便获得正确的 class.