找不到任何tns-core-module / ui Modules NativeScript

时间:2017-08-22 09:40:00

标签: javascript typescript nativescript

我正在编写{N} -Application,需要从tns-core-modules/ui/image - 模块导入图像。可悲的是,他说他无法在tns-core-module中找到目标。

我的代码:

import * as ImageModule from "tns-core-module/ui/image";

我现在该怎么办?我该如何解决这个问题?

我的npm --version3.10.10

我的node -vv6.11.1

我的TS版本:2.4.2

我的package.json中的tns-core-modulesVersion 2.2.1

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";