亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何使用VS Code開發你的第一個AngularJS2應用程序

發布時間:2021-07-26 09:31:54 來源:億速云 閱讀:130 作者:小新 欄目:web開發

這篇文章主要介紹了如何使用VS Code開發你的第一個AngularJS2應用程序,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

運行環境:

1、Windows 10

2、Node 6.7.0

如何使用VS Code開發你的第一個AngularJS2應用程序

3、npm 3.10.8

如何使用VS Code開發你的第一個AngularJS2應用程序

4、TypeScript 2.0.3

如何使用VS Code開發你的第一個AngularJS2應用程序

創建項目

1、創建文件夾:angular2-quickstart,啟動VS Code,打開剛創建的文件夾:angular2-quickstart。

2、在根文件夾(angular2-quickstart)下,創建package.json文件:

{
 "name": "angular-quickstart",
 "version": "1.0.0",
 "scripts": {
 "start": "tsc && concurrently \"tsc -w\" \"lite-server\" ",
 "lite": "lite-server",
 "postinstall": "typings install",
 "tsc": "tsc",
 "tsc:w": "tsc -w",
 "typings": "typings"
 },
 "license": "ISC",
 "dependencies": {
 "@angular/common": "~2.0.2",
 "@angular/compiler": "~2.0.2",
 "@angular/core": "~2.0.2",
 "@angular/forms": "~2.0.2",
 "@angular/http": "~2.0.2",
 "@angular/platform-browser": "~2.0.2",
 "@angular/platform-browser-dynamic": "~2.0.2",
 "@angular/router": "~3.0.2",
 "@angular/upgrade": "~2.0.2",
 "angular-in-memory-web-api": "~0.1.5",
 "bootstrap": "^3.3.7",
 "core-js": "^2.4.1",
 "reflect-metadata": "^0.1.8",
 "rxjs": "5.0.0-beta.12",
 "systemjs": "0.19.39",
 "zone.js": "^0.6.25"
 },
 "devDependencies": {
 "concurrently": "^3.1.0",
 "lite-server": "^2.2.2",
 "typescript": "^2.0.3",
 "typings": "^1.4.0"
 }
}

3、在根文件夾(angular2-quickstart)下,創建tsconfig.json文件:

{
 "compilerOptions": {
 "target": "es5",
 "module": "commonjs",
 "moduleResolution": "node",
 "sourceMap": true,
 "emitDecoratorMetadata": true,
 "experimentalDecorators": true,
 "removeComments": false,
 "noImplicitAny": false
 }
}

4、在根文件夾(angular2-quickstart)下,創建typings.json文件:

{
 "globalDependencies": {
 "core-js": "registry:dt/core-js#0.0.0+20160725163759",
 "jasmine": "registry:dt/jasmine#2.2.0+20160621224255",
 "node": "registry:dt/node#6.0.0+20160909174046"
 }
}

5、在根文件夾(angular2-quickstart)下,創建systemjs.config.js(JavaScript腳本)文件:

/**
 * System configuration for Angular samples
 * Adjust as necessary for your application needs.
 */
(function(global) {
 System.config({
 paths: {
  // paths serve as alias
  'npm:': 'node_modules/'
 },
 // map tells the System loader where to look for things
 map: {
  // our app is within the app folder
  app: 'app',
  // angular bundles
  '@angular/core': 'npm:@angular/core/bundles/core.umd.js',
  '@angular/common': 'npm:@angular/common/bundles/common.umd.js',
  '@angular/compiler': 'npm:@angular/compiler/bundles/compiler.umd.js',
  '@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
  '@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
  '@angular/http': 'npm:@angular/http/bundles/http.umd.js',
  '@angular/router': 'npm:@angular/router/bundles/router.umd.js',
  '@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
  // other libraries
  'rxjs': 'npm:rxjs',
  'angular-in-memory-web-api': 'npm:angular-in-memory-web-api',
 },
 // packages tells the System loader how to load when no filename and/or no extension
 packages: {
  app: {
  main: './main.js',
  defaultExtension: 'js'
  },
  rxjs: {
  defaultExtension: 'js'
  },
  'angular-in-memory-web-api': {
  main: './index.js',
  defaultExtension: 'js'
  }
 }
 });
})(this);

文件結構:

|_ angular2-quickstart
|_ app
| |_ app.component.ts
| |_ main.ts
|_ node_modules ...
|_ typings ...
|_ index.html
|_ package.json
|_ tsconfig.json
|_ typings.json

安裝依賴包(最關鍵一步

使用 npm 命令來安裝 package.json 中列出的依賴包。在命令行 cmd 窗口,輸入:cd angular2-quickstart,進入angular2-quickstar文件夾下,輸入下列命令:

npm install

如何使用VS Code開發你的第一個AngularJS2應用程序

創建TypeScript應用程序

1、在VS Code中,在根文件夾(angular2-quickstart)下,創建app子文件夾。

2、在子app文件夾下,創建TypeScript文件app.module.ts:

import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
@NgModule({
 imports: [ BrowserModule ],
 declarations: [ AppComponent ],
 bootstrap: [ AppComponent ]
})
export class AppModule { }

3、在子app文件夾下,創建TypeScript文件app.component.ts:

import { Component } from '@angular/core';
@Component({
 selector: 'my-app',
 template: '<h2>我的第一個 AngularJS 2 應用程序</h2>'
})
export class AppComponent { }

4、在子app文件夾下,創建TypeScript文件main.ts:

import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { AppModule } from './app.module';
const platform = platformBrowserDynamic();
platform.bootstrapModule(AppModule);

5、在根文件夾(angular2-quickstart)下,創建html文件index.html:

<html>
<head>
 <title>Angular QuickStart</title>
 <meta charset="UTF-8">
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <link rel="stylesheet" href="styles.css">
 <!-- 1. Load libraries -->
 <!-- Polyfill(s) for older browsers -->
 <script src="node_modules/core-js/client/shim.min.js"></script>
 <script src="node_modules/zone.js/dist/zone.js"></script>
 <script src="node_modules/reflect-metadata/Reflect.js"></script>
 <script src="node_modules/systemjs/dist/system.src.js"></script>
 <!-- 2. Configure SystemJS -->
 <script src="systemjs.config.js"></script>
 <script>
  System.import('app').catch(function(err) {
   console.error(err);
  });
 </script>
</head>
<!-- 3. Display the application -->
<body>
 <my-app>Loading...</my-app>
</body>
</html>

6、在根文件夾(angular2-quickstart)下,創建css文件styles.css:

/* Master Styles */
h2 {
 color: #369;
 font-family: Arial, Helvetica, sans-serif;
 font-size: 250%;
}
h3,
h4 {
 color: #444;
 font-family: Arial, Helvetica, sans-serif;
 font-weight: lighter;
}
body {
 margin: 2em;
}

配置應用程序

1、在VS Code中,在根文件夾(angular2-quickstart)下,創建.vscode子文件夾。

2、在.vscode子文件夾下,創建settings.json文件:

// 將設置放入此文件中以覆蓋默認值和用戶設置。
{
 "typescript.tsdk": "node_modules/typescript/lib",
 // ts 項目, 隱藏 .js 和 .js.map 文件
 "files.exclude": {
  "node_modules": true,
  "**/*.js": { "when": "$(basename).ts" },
  "**/*.js.map": true
 }
}

3、在.vscode子文件夾下,創建tasks.json文件:

{
 // See https://go.microsoft.com/fwlink/?LinkId=733558
 // for the documentation about the tasks.json format
 "version": "0.1.0",
 "command": "cmd",
 "isShellCommand": true,
 "showOutput": "always",
 "args": ["/C npm start"]
}

運行應用程序至此,配置完畢,按 Ctrl + Shift + B 編譯,程序將會將Typescript編譯成 Javascript ,同時啟動一個 lite-server, 加載我們編寫的index.html。 顯示:我的第一個 Angular 2 應用程序

如何使用VS Code開發你的第一個AngularJS2應用程序

如何使用VS Code開發你的第一個AngularJS2應用程序

感謝你能夠認真閱讀完這篇文章,希望小編分享的“如何使用VS Code開發你的第一個AngularJS2應用程序”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

郸城县| 财经| 鱼台县| 武清区| 盐山县| 城口县| 于都县| 镇康县| 扎鲁特旗| 南木林县| 孟州市| 西乡县| 新民市| 博兴县| 堆龙德庆县| 海盐县| 什邡市| 肇源县| 长垣县| 临海市| 青岛市| 芦溪县| 邳州市| 神池县| 鸡泽县| 江孜县| 五华县| 旌德县| 石景山区| 那曲县| 蓝山县| 来安县| 霍林郭勒市| 抚宁县| 宁都县| 孝义市| 谢通门县| 阿巴嘎旗| 陆良县| 金山区| 大冶市|