relative 和 non-relative import
Relative Import以/
, ./
或../
为开头. 如
import Entry from "./components/Entry";
import { DefaultHeaders } from "../constants/http";
import "/mod";
所有其他的都是为non-relative import, 如:
import * as $ from "jquery";
import { Component } from "@angular/core";
relative import引入相对于当前文件路径的文件, 且无法引入ambient module declarations. 使用relative import来引入你自己实现的文件.
non-relative import引入相对于baseUrl
路径, 或者存在于路径映射(Path Mapping)中的文件, 可以引入ambient module declarations. 使用non-relative import来引入外部依赖.
模块解析策略
有两种策略: Node或Classic. 通过--moduleResolution
来指定策略. 对于--module AMD | System | ES2015
来说, 默认是Classic.
Classic (经典策略)
这曾是TypeScript的默认路径解析策略. 现在它主要是为了维护向后兼容性了.
对于relative import, 在文件/root/src/folder/A.ts
中`import { b } from "./moduleB", 会进行如下查找:
/root/src/folder/moduleB.ts
/root/src/folder/moduleB.d.ts
对于non-relative import, 查找过程会从当前文件沿着文档树向上查找. 在文件/root/src/folder/A.ts
中import { b } from "moduleB"
, 会进行如下查找:
/root/src/folder/moduleB.ts
/root/src/folder/moduleB.d.ts
/root/src/moduleB.ts
/root/src/moduleB.d.ts
/root/moduleB.ts
/root/moduleB.d.ts
/moduleB.ts
/moduleB.d.ts
Node策略
这个策略模仿Node.js的模块解析策略. Node.js的完整解析算法见这里.
Node.js如何解析模块
Node.js中调用require
方法来引入模块.
require
的路径为相对路径
文件/root/src/moduleA.js
中通过import var x = require("./moduleB");
引入模块, 查找过程如下:
- 文件
/root/src/moduleB.js
- 文件夹
/root/src/moduleB
, 且其中有package.json
文件指定了"main"
模块. 如/root/src/moduleB/package.json
中有{ "main": "lib/mainModule.js" }
, 那么Node.js会引入/root/src/moduleB/lib/mainModule.js
- 文件夹
/root/src/moduleB
, 且其中有index.js
. 这是默认的"main"
模块.
require
的路径为绝对路径
Node会从node_modules
文件夹中寻找模块. node_modules
可能是在源文件当前目录中, 也可能是在文件树的上层. Node会沿着文件树逐层向上寻找node_modules
中的模块.
文件/root/src/moduleA.js
通过import var x = require("moduleB");
引入模块, 查找过程如下:
/root/src/node_modules/moduleB.js
-
/root/src/node_modules/moduleB/package.json
(if it specifies a"main"
property) /root/src/node_modules/moduleB/index.js
/root/node_modules/moduleB.js
-
/root/node_modules/moduleB/package.json (if it specifies a
"main"` property) /root/node_modules/moduleB/index.js
/node_modules/moduleB.js
-
/node_modules/moduleB/package.json
(if it specifies a"main"
property) /node_modules/moduleB/index.js
TypeScript如何解析模块
TypeScript模仿了Node的解析策略, 不过针对的是.ts
, .tsx
和.d.ts
文件, 而且package.json
中用"types"
对应于Node中的"main"
.
相对路径
文件/root/src/moduleA.ts
中引入import { b } from "./moduleB"
, 查找过程如下:
/root/src/moduleB.ts
/root/src/moduleB.tsx
/root/src/moduleB.d.ts
-
/root/src/moduleB/package.json
(if it specifies a"types"
property) /root/src/moduleB/index.ts
/root/src/moduleB/index.tsx
/root/src/moduleB/index.d.ts
绝对路径
文件/root/src/moduleA.ts
中引入import { b } from "moduleB"
, 查找过程如下:
/root/src/node_modules/moduleB.ts
/root/src/node_modules/moduleB.tsx
/root/src/node_modules/moduleB.d.ts
-
/root/src/node_modules/moduleB/package.json
(if it specifies a"types"
property) /root/src/node_modules/moduleB/index.ts
/root/src/node_modules/moduleB/index.tsx
/root/src/node_modules/moduleB/index.d.ts
/root/node_modules/moduleB.ts
/root/node_modules/moduleB.tsx
/root/node_modules/moduleB.d.ts
-
/root/node_modules/moduleB/package.json
(if it specifies a"types"
property) /root/node_modules/moduleB/index.ts
/root/node_modules/moduleB/index.tsx
/root/node_modules/moduleB/index.d.ts
/node_modules/moduleB.ts
/node_modules/moduleB.tsx
/node_modules/moduleB.d.ts
-
/node_modules/moduleB/package.json
(if it specifies a"types"
property) /node_modules/moduleB/index.ts
/node_modules/moduleB/index.tsx
/node_modules/moduleB/index.d.ts
模块解析参数
通常, 项目中都会通过一系列的构建程序将源目录中的文件, 打包/压缩到目标目录中. 这个过程可能导致文件名或目录结构发生变化. 因此TypeScript编译器有如下几个参数应对这种变化.
Base URL
AMD模块加载器, 如requireJS, 常使用baseUrl
. 源文件可以在多个目录中, 但目标文件会被放到同一个目录中.
所有non-relative import都相对于baseUrl
.
baseUrl
的值可以是:
- baseUrl的命令行参数 (如果参数为相对路径, 则该参数相对于当前路径)
-
tsconfig.json
中的baseUrl
(如果参数为相对路径, 则该参数相对于tsconfig.json
的目录)
Path Mapping (路径映射)
你还可以使用tsconfig.json
中的"paths"
属性, 定义Path Mapping. 如:
{
"compilerOptions": {
"baseUrl": ".", // This must be specified if "paths" is.
"paths": {
"jquery": ["node_modules/jquery/dist/jquery"] // This mapping is relative to "baseUrl"
}
}
}
注意Path Mapping是相对于baseUrl
的.
"paths"
可以用来实现路径回退(Fallback)查找. 举个例子.
projectRoot
├── folder1
│ ├── file1.ts (imports 'folder1/file2' and 'folder2/file3')
│ └── file2.ts
├── generated
│ ├── folder1
│ └── folder2
│ └── file3.ts
└── tsconfig.json
tsconfig.json
内容如下
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"*": [
"*",
"generated/*"
]
}
}
}
这个配置让编译器对满足模式"*"
(即所有文件)的模块引用, 进行如下查找:
-
"*"
: meaning the same name unchanged, so map<moduleName>
=><baseUrl>/<moduleName>
-
"generated/*"
meaning the module name with an appended prefix“generated”
, so map<moduleName>
=><baseUrl>/generated/<moduleName>
所以, 对于file1.ts
中的两个引用:
-
import ‘folder1/file2’
-
"*"
捕获文件名folder1/file2
- 尝试第一种替换, 即:
"*"
=>folder1/file2
- 得到的是绝对路径, 将其与
baseUrl
结合, 得到projectRoot/folder1/file2.ts
- 文件找到, 结束.
-
-
import ‘folder2/file3’
-
"*"
捕获文件名folder2/file3
- 尝试第一种替换, 即:
"*"
=>folder2/file3
- 得到的是绝对路径, 将其与
baseUrl
结合, 得到projectRoot/folder2/file3.ts
- 文件不存在, 尝试第二种替换
"generated/*"
=>generated/folder2/file3
- 得到的是绝对路径, 将其与
baseUrl
结合, 得到projectRoot/generated/folder2/file3.ts
- 文件找到, 结束.
-
import后面的花括号
export分为两种, Named Export(有名导出)和Default Export(默认导出). 花括号是用于Named Export的.
Named Export
// module.ts
export function A() { ... };
export function B() { ... };
// app.ts
import { A, B as BB } from 'module.ts';
其中, 函数A
和B
是Named Export模式, 导入时需要加花括号, 而且可以使用as
改名.
Default Export
// module.ts
export default function C () { ... };
// app.ts
import myFunc from 'module';
// or
import { default as myFunc } from 'module';
函数C
以default
方式导出, 引入的时候不用加花括号, myFunc
即为C
.
其实default
导出也是一种Named Export, 只不过它导出的变量被加了默认的名字default
, 所以app.ts
中的两句话效果一样.
export =
和import = require()
CommonJS 和 AMD 都有exports
对象的概念, exports
对象包含了所有导出的内容. 它们也都支持将exports
对象替换为自己指定的一个对象/函数/变量等.
相应地, Typescript使用export =
, 导出的内容可以是class
, interface
, namespace
, function
或者enum
.
使用export =
时必须相应地使用import module = require("module")
.
// module.ts
class A { ... }
export = A;
// app.ts
import A = requrie("module");
import * as X from "XXX"
是什么意思
// pet.ts
export class Dog { ... }
export class Cat { ... }
// app.ts
import * as Pet from "./pet.ts";
let x = new Pet.Dog();
可以看到, import * as X from "XXX"
的作用就是从"XXX"
文件中, 引入所有导出的内容作为X
的属性.
与import X = require("XXX")
作用相同.
ambient module declarations
var x = require
VS import x from
在Node.js (CommonJS)中使用 var x = require("XXX")
, 其中var
也可以用const
等修饰词替换. 与之配套的是module.exports
和exports
.
exports.A = function() {...}
module.exports.A = function() {...}
module.exports = { ... }
ES6采用import x from
的形式, 与之配套的是export
:
export function A() { ... }
export = { ... }
var x = require
和import x = require
的区别?
我现在项目中常看到import x = require
.
网友评论