跟著Vam一起學(xué)習(xí)Typescript(第一期)
一、安裝環(huán)境與配置
1、命令行安裝
npm i -g typescript
2、快捷打開Vs Code編輯器
創(chuàng)建一個(gè)項(xiàng)目文件夾,在該文件夾下打開命令行工具,使用code .命令快速打開編輯器(如果計(jì)算機(jī)提示沒有這個(gè)命令,請查找到編輯器安裝目錄bin文件夾下,復(fù)制地址。到系統(tǒng)的環(huán)境變量下Path,編輯,在前面加上;,粘貼進(jìn)去就好了)。
3、運(yùn)行typesript以及同步typesript與js轉(zhuǎn)換
我們在項(xiàng)目文件夾下創(chuàng)建一個(gè)名叫demo1.ts文件。這就是我們學(xué)習(xí)typesript的起點(diǎn),要記住typesript需要轉(zhuǎn)換成js文件才可以被瀏覽器識別,所以需要運(yùn)行命令:
tsc demo1.ts
這樣就會在文件夾下生成一個(gè)名叫demo1.js文件。是不是感覺每次寫完都要運(yùn)行命令很煩,所以我們推薦使用Vs code編輯器,讓你每次編寫ts的時(shí)候都會同步編譯成js文件。教程如下:
在項(xiàng)目文件夾下運(yùn)行命令:
tsc --init
1
項(xiàng)目文件夾下,會生成一個(gè)tsconfig.json文件。取消注釋 "outDir": "./js",,這就是輸出js文件所要存放的地址,這里我改寫了在項(xiàng)目文件夾下的js文件夾。
{
"compilerOptions": {
/* Basic Options */
// "incremental": true, /* Enable incremental compilation */
"target": "es5", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */
// "lib": [], /* Specify library files to be included in the compilation. */
// "allowJs": true, /* Allow javascript files to be compiled. */
// "checkJs": true, /* Report errors in .js files. */
// "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */
// "declaration": true, /* Generates corresponding '.d.ts' file. */
// "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */
// "sourceMap": true, /* Generates corresponding '.map' file. */
// "outFile": "./", /* Concatenate and emit output to single file. */
"outDir": "./js", /* Redirect output structure to the directory. */
// "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
// "composite": true, /* Enable project compilation */
// "tsBuildInfoFile": "./", /* Specify file to store incremental compilation information */
// "removeComments": true, /* Do not emit comments to output. */
// "noEmit": true, /* Do not emit outputs. */
// "importHelpers": true, /* Import emit helpers from 'tslib'. */
// "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */
// "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */
/* Strict Type-Checking Options */
"strict": true, /* Enable all strict type-checking options. */
// "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */
// "strictNullChecks": true, /* Enable strict null checks. */
// "strictFunctionTypes": true, /* Enable strict checking of function types. */
// "strictBindCallApply": true, /* Enable strict 'bind', 'call', and 'apply' methods on functions. */
// "strictPropertyInitialization": true, /* Enable strict checking of property initialization in classes. */
// "noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */
// "alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */
/* Additional Checks */
// "noUnusedLocals": true, /* Report errors on unused locals. */
// "noUnusedParameters": true, /* Report errors on unused parameters. */
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
/* Module Resolution Options */
// "moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
// "baseUrl": "./", /* Base directory to resolve non-absolute module names. */
// "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
// "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */
// "typeRoots": [], /* List of folders to include type definitions from. */
// "types": [], /* Type declaration files to be included in compilation. */
// "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
// "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */
// "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */
/* Source Map Options */
// "sourceRoot": "", /* Specify the location where debugger should locate TypeScript files instead of source locations. */
// "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */
// "inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */
// "inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */
/* Experimental Options */
// "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
// "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
/* Advanced Options */
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */
}
}
然后,在vs code編輯器上方的終端選項(xiàng)找到運(yùn)行任務(wù)選項(xiàng),點(diǎn)擊它。有兩個(gè)選項(xiàng):
選擇 tsc:監(jiān)視-tsconfig.json。就OK了。
4、安裝編輯器支持Typescript插件
這里推薦Vs code的插件: TypeScript Hero
二、學(xué)習(xí)Typescript的數(shù)據(jù)類型
Typescript一共有10種數(shù)據(jù)類型。
number類型
string類型
數(shù)組類型
元組類型
枚舉類型
boolean類型
any類型
null和undefined
void 類型
never 類型
// 1、number類型
let num:number=1;
console.log(num); // 1
// 2、string類型
let str:string='str';
console.log(str); // str
// 3、數(shù)組類型
let arr:number[]=[1,2,3];
console.log(arr); // [1,2,3]
let arr:string[]=['1','2','3'];
console.log(arr); // ['1','2','3']
let arr:Array<string>=['1','2','3'];
console.log(arr);
// 4、元組類型
let arrx:[number,string]=[1,'2'];
console.log(arrx); // [1,'2']
// 5、枚舉類型
enum flag {success=1,error=0};
let s:flag=flag.success;
console.log(s); //1
enum word {a,b,c};
let msg:word=word.b;
console.log(msg); //1
enum word {a,b=2,c};
let msg:word=word.c;
console.log(msg); //3
作者:Vam的金豆之路
主要領(lǐng)域:前端開發(fā)
我的微信:maomin9761
微信公眾號:前端歷劫之路