如何在angular2中引用/导入和导出

时间:2016-11-07 16:22:52

标签: angular import reference export

有没有人知道导入带有三个斜杠的类,如“///”在angular2中是否有效,何时应该使用?应该何时使用导入/导出语句以及何时使用三个参考?提前谢谢。

1 个答案:

答案 0 :(得分:2)

导入和导出是导入和导出模块的打字稿的关键词。例如

export class MyModul {
// my module
} now you can import this module in other file like
import {MyModule} from './mymodule';

Angluar2建立在打字稿上,有很多模块。您只需从angular2导入要使用的模块。 实施例

import {Component} from '@angular/core.

如果您使用的是基于JavaScript的angular2中的第三方模块,那么您必须使用打字输入。例如,如果要将node用于typescript,则必须安装类型为

的类型节点
typings install node

当你尝试从像http这样的节点导入任何模块并使用类似http.get的那个时,它将无法识别在这种情况下你需要添加引用,其中typings节点安装有三个斜杠,然后typescript将识别http和给你甚至很好的智慧。希望它清除事物并帮助你理解你在寻找什么。