我正在编写{N} -Application,需要从tns-core-modules/ui/image
- 模块导入图像。可悲的是,他说他无法在tns-core-module中找到目标。
我的代码:
import * as ImageModule from "tns-core-module/ui/image";
我现在该怎么办?我该如何解决这个问题?
我的npm --version
:3.10.10
我的node -v
:v6.11.1
我的TS版本:2.4.2
我的package.json中的tns-core-modules
是Version 2.2.1
答案 0 :(得分:0)
您确定自己提供的路径有效吗?看起来你想要相对引用它,但如果你愿意,你可能需要上升几个级别。例如:
import * as ImageModule from "../tns-core-module/ui/image"; //This will go up two levels.
或者,您可以使用tsconfig.json文件中声明的路径导入模块。
的内容 "paths": {
"*": [
"./node_modules/tns-core-modules/*"
]
}
如果是这种情况,您只需使用
导入即可imprt * as ImageModule from "ui/images";