最近入职,发现公司使用到typescript,所以就在此留下一个笔记,方便自己和大家一起学习。
TypeScript是一种由微软开发的自由和开源的编程语言。它是JavaScript的一个严格超集,并添加了可选的静态类型和基于类的面向对象编程。
大家日常学习可以去TS Playground测试一些代码
那我们就来开始学习吧!
基本类型的定义
在使用TS之前,我们定义的JavaScript变量都是弱类型语言,它不像C,Java这种,会在编译的时候对变量进行类型检查,所以有的时候会出现意想不到的Bug。
使用TS我们可以处理很简单的数据类型:
Boolean类型
1 | // boolean |
Number类型
1 | // number |
String类型
1 | // string |
Array类型
1 | // array |
不确定什么属性
1 | // any |
Void
1 | //void |
Function定义
1 | function vo(): void { |
当我们在使用函数的时候,有些时候会使用到函数参数默认,或者可选参数,那么在TS中如何写呢?1
2
3
4
5
6function game(name: string, rank?: string, score: number = 0): string {
return `${name} ${rank} ${score}`
}
console.log(game('rainy', 'difficult', 10000));
console.log(game('rainy', 'difficult'));
console.log(game('rainy'));
Class类
1 | class Person { |
我们在学习面向对象的语言,C++和Java时候知道类的属性和方法是有修饰符的,他们决定了外部是否能够访问类中的属性、方法,当用户为定义是,属性和方法默认都是public 属性,其中还有protected 和private 属性。当你使用private 修饰符定义成属性或者方法时,如果你需要让其他使用者使用这个属性时,你可以定义一个public 的方法,之后用户只能通过这个API接口来获取属性值或者方法的结果,例如:1
2
3
4
5
6
7
8
9
10
11
12class Person {
private name: string;
constructor(name: string) {
this.name = name;
}
getName() {
return this.name;
}
}
let p = new Person('Rain120');
console.log('person name:', p.name)
console.log('person name:', p.getName())
虽然这里报错了,但是编译结果却是可以的应为TS在转换成JS语言后,并没有真的将name编译成私有的属性,TypeScript的核心原则之一是对值所具有的结构进行类型检查,它的作用只是提示开发者。
protected 修饰符与private 修饰符的行为很相似,但有一点不同,protected 成员在派生类中仍然可以访问, 这就不详细讲解这些了,大家可以去学习下Java或者C++的类,感受一下。
接口(Interface)
在TypeScript里,接口的作用就是为这些类型命名和为你的代码或第三方代码定义契约。这句话太官方了,我自己理解的就是它定义了一些你自己约定的参数类型。
工作中,我们使用到的是React+Typescript,所以,我把我日常写法拿出来。1
2
3
4
5
6
7
8
9
10
11
12interface SystemsProps {
systems: any
}
export class Systems extends React.Component<SystemsProps, any>
...
render() {
const { systems } = this.props
return (
<div>{systems.name}</div>
)
}
}
当然,从C++中学到接口也是可以继承的,例如:1
2
3
4
5
6
7
8
9interface Color{
color: string;
}
interface Car extends Color{
price: number;
}
let car = <Car>{};
car.color = "white";
car.price = 10000000;
泛型
在像C++和Java这样的语言中,可以使用泛型来创建可重用的组件,一个组件可以支持多种类型的数据。 这样用户就可以以自己的数据类型来使用组件。
其实我们之前有用到泛型,只是没有说到这个概念。1
let arr: Array<number> = [1, 2, 3, 4];
这是一个最简答你的泛型,定义了一个number类型的数组,下面我写一个复杂点的泛型:1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17class Fruit {
name: string;
price: number;
constructor(name: string, price: number) {
this.name = name;
this.price = price;
}
sold() {
console.log(`${this.name} sold $${this.price}`)
}
}
let fruit: Array<Fruit> = []
fruit[0] = new Fruit('apple', 8)
fruit[1] = new Fruit('banana', 5)
fruit[2] = new Fruit('lemon', 10)
console.log(fruit)
这个泛型是一个Fruit类型的数组,这个数组的子元素全是Fruit类型,当我们定义一个其他类型是,例如1
fruit[3] = { name: 'watermelon', price: 2 }
类型推断机制
1 | let num = 10; |
我们平常在使用变量赋值的时候,这样写是没有问题,但是使用TS类型检查后,它会根据用户第一次定义或者赋值的类型来推断该变量的类型,这就是TS的类型推断机制。
迭代器
这里我们讲下我们常见的几种的迭代器,包括for-in, for-of,用来跟forEach对比,直接上代码,我们从代码来分析它们之间的不同1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20let arr: any = ['a','b','c'];
arr.type = 'array'
arr.forEach((item, index) => {
console.log('forEach', index, item, arr[index]);
})
for (let i in arr) {
console.log('for-in', i, arr[i]);
}
let obj = {
'a': 'I\'m a',
'b': 'I\'m b',
'c': 'I\'m c'
}
for (let i of arr) {
console.log('for-of', i, obj[i]);
}
从结果上来看,
forEach:只是常见的for循环,它不会遍历该对象的属性值;
for-in:迭代的是对象的键(key)的列表,它会遍历对象的属性;
for-of:迭代对象的键对应的值(value),它也不会遍历对象的属性。
模块
这个地方熟悉CommonJS的都会知道export(导出), import(导入),所以这里就不详细讲了,直接跳过
最后讲一下,tsconfig.json的配置,详见tsconfig.json1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38{
"compilerOptions": {
"moduleResolution": "node",
"outDir": ./dist", // 生成的所有文件放在dist目录下
"target": "es5", // 将JavaScript代码降级到低版本ECMAScript 5
"lib": ["es6", "dom"],
"rootDir": "app/", //仅用来控制输出的目录结构。
"jsx": "react", // 用于指定按照何种方式生成jsx代码,可选react和preserve。
"module": "esnext", // 用于指定模块的代码生成规则,可以使用 commonjs 、 amd 、 umd 、 system 、 es6 、 es2015 、 none 这些选项。
"declaration": false, // 是否需要生成定义文件d.ts,设置为true,则生成
"allowJs": true, // 接受JavaScript做为输入
"allowSyntheticDefaultImports": true, // 置为true时,则允许从没有默认导出的模块中默认导入(也就是不做检查)。
"inlineSourceMap": false, // 是否需要将sourceMap文件生成到js文件中,设置为true,则生成到js文件中。
"sourceMap": true, // 把 ts 文件编译成 js 文件的时候,同时生成对应的 map 文件
"noEmitOnError": false, // 设置为true时,如果遇到了错误,就不再输出
"emitDecoratorMetadata": false, // 设置为true,则使用元数据特性
"experimentalDecorators": true, // 设置为true,则支持ES7的装饰器特性
"noImplicitReturns": true, // 会防止你忘记在函数末尾返回值
"noImplicitThis": false,
"noImplicitUseStrict": false, // 当设置为true时,编译输出时不会调用'use strict'指令(也就是不生成use strict)
"noImplicitAny": false, // 如果编译器无法根据变量的用途推断出变量的类型,它就会悄悄的把变量类型默认为 any。
"noUnusedLocals": false,
"baseUrl": "app",
"paths": {
"app": ["app"]
}
},
// 包括app下的所有.ts(对应js文件), .tsx(对应jsx文件)文件
"include": [
"app/**/*.ts",
"app/**/*.tsx"
],
// 忽略node_modules下所有的文件
"exclude": [
"node_modules",
... //其他要忽略的文件或者正则表达式表示
]
}