Angular2 Hello World 之 2.0

来源:http://www.cnblogs.com/du-blog/archive/2016/09/24/5904312.html
-Advertisement-
Play Games

最近angular2正式版發佈了,現在就趁熱接著記錄一下2.0版的Hello World。據說由RC6升級到2.0代碼改動不是很大,在寫的時候也感覺改動不是很大,這次記錄還是以asp.net core 空項目模板為基礎,本著在此基礎上添加最少的代碼來實現Hello World,沒用的代碼全部清掉(用 ...


  最近angular2正式版發佈了,現在就趁熱接著記錄一下2.0版的Hello World。據說由RC6升級到2.0代碼改動不是很大,在寫的時候也感覺改動不是很大,這次記錄還是以asp.net core 空項目模板為基礎,本著在此基礎上添加最少的代碼來實現Hello World,沒用的代碼全部清掉(用的時候再引入)。

  一、準備工作。

  首先,創建一個asp.net core空項目,併在Startup.cs類中添加“靜態文件支持”;然後,在項目根目錄下添加NPM配置文件、Gulp配置文件和typescript文件夾,併在該文件夾下TypeScript JSON配置文件。代碼如下:

 1 {
 2   "version": "1.0.0",
 3   "name": "asp.net",
 4   "private": true,
 5   "dependencies": {
 6     "@angular/common": "2.0.0",
 7     "@angular/compiler": "2.0.0",
 8     "@angular/core": "2.0.0",
 9     "@angular/platform-browser": "2.0.0",
10     "@angular/platform-browser-dynamic": "2.0.0",
11 
12     "core-js": "2.4.1",
13     "systemjs": "0.19.38",
14     "rxjs": "5.0.0-beta.12",
15     "zone.js": "0.6.25"
16   },
17   "devDependencies": {
18     "gulp": "3.9.1"
19   }
20 }
package.json
 1 {
 2   "compilerOptions": {
 3     "emitDecoratorMetadata": true,
 4     "experimentalDecorators": true,
 5     "module": "system",
 6     "moduleResolution": "node",
 7     "noImplicitAny": false,
 8     "noEmitOnError": false,
 9     "removeComments": false,
10     "target": "es5",
11     "outDir": "../wwwroot/app"
12   },
13   "exclude": [
14     "node_modules",
15     "wwwroot"
16   ]
17 }
tsconfig.json
 1 /*
 2 This file in the main entry point for defining Gulp tasks and using Gulp plugins.
 3 Click here to learn more. http://go.microsoft.com/fwlink/?LinkId=518007
 4 */
 5 
 6 var gulp = require('gulp');
 7 
 8 /// Define paths
 9 var srcPaths = {
10     js: [
11         'node_modules/core-js/client/shim.min.js',
12         'node_modules/zone.js/dist/zone.js',
13         'node_modules/systemjs/dist/system.src.js',
14     ],
15     js_angular: [
16         'node_modules/@angular/**'
17     ],
18     js_rxjs: [
19         'node_modules/rxjs/**'
20     ]
21 };
22 
23 var destPaths = {
24     js: 'wwwroot/js/',
25     js_angular: 'wwwroot/js/@angular/',
26     js_rxjs: 'wwwroot/js/rxjs/'
27 };
28 
29 // Copy all JS files from external libraries to wwwroot/js
30 gulp.task('js', function () {
31     gulp.src(srcPaths.js_angular)
32         .pipe(gulp.dest(destPaths.js_angular));
33     gulp.src(srcPaths.js_rxjs)
34         .pipe(gulp.dest(destPaths.js_rxjs));
35     return gulp.src(srcPaths.js)
36         .pipe(gulp.dest(destPaths.js));
37 });
gulpfile.js

  二、在typescript文件夾下創建以下三個文件app.component.ts、app.module.ts、boot.ts,代碼如下:

1 import {Component} from "@angular/core";
2 @Component({
3     selector: 'myApp',
4     template: `Hello World!`
5 })
6 export class AppComponent { }  
app.component.ts
1 import { NgModule }      from '@angular/core';
2 import { BrowserModule } from '@angular/platform-browser';
3 import { AppComponent }   from './app.component';
4 @NgModule({
5     imports: [BrowserModule],
6     declarations: [AppComponent],
7     bootstrap: [AppComponent]
8 })
9 export class AppModule { }
app.module.ts
1 import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
2 import { AppModule } from './app.module';
3 const platform = platformBrowserDynamic();
4 platform.bootstrapModule(AppModule);
boot.ts

  三、在靜態文件目錄wwwroot中,添加以下兩個文件index.html和systemjs.config.js,代碼如下:

 1 <!DOCTYPE html>
 2 <html>
 3 <head>
 4     <title></title>
 5     <meta charset="UTF-8">
 6     <meta name="viewport" content="width=device-width, initial-scale=1">
 7 
 8     <!-- 1. Load libraries -->
 9     <script src="js/shim.min.js"></script>
10     <script src="js/zone.js"></script>
11     <script src="js/system.src.js"></script>
12     <!-- 2. Configure SystemJS -->
13     <script src="systemjs.config.js"></script>
14     <script>
15       System.import('app').catch(function(err){ console.error(err); });
16     </script>
17 </head>
18 <body>
19     <myApp>Loading...</myApp>
20 </body>
21 </html>
index.html
 1 /**
 2  * System configuration for Angular samples
 3  * Adjust as necessary for your application needs.
 4  */
 5 (function (global) {
 6     System.config({
 7         paths: {
 8             // paths serve as alias
 9             'npm:': 'js/'
10         },
11         // map tells the System loader where to look for things
12         map: {
13             // our app is within the app folder
14             app: 'app',
15             // angular bundles
16             '@angular/core': 'npm:@angular/core/bundles/core.umd.js',
17             '@angular/common': 'npm:@angular/common/bundles/common.umd.js',
18             '@angular/compiler': 'npm:@angular/compiler/bundles/compiler.umd.js',
19             '@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
20             '@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
21             // other libraries
22             'rxjs': 'npm:rxjs',
23         },
24         // packages tells the System loader how to load when no filename and/or no extension
25         packages: {
26             app: {
27                 main: './boot.js',
28                 defaultExtension: 'js'
29             },
30             rxjs: {
31                 defaultExtension: 'js'
32             }
33         }
34     });
35 })(this);
system.config.js

  四、將JS文件拷貝到wwwroot目錄中,即執行Gulp任務;生成解決方案——將ts文件轉換為js文件到目錄/wwwroot/app下。

  至此,已修改完畢,看一下運行結果,如下圖:


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 序 最近琢磨著要寫點東西,把基本的Java Web開發流程完整地走一遍,最後決定,乾脆就寫一個小小的項目實戰吧。這個小項目作為一個JavaWeb的入門例子,從前臺頁面到項目發佈,把整個流程走通。所謂 麻雀雖小,五臟俱全 。難度不是很高,正好可以作為入門使用。 接下來就是做什麼的問題了,首先不能太簡單 ...
  • 1 package test; 2 //i++ 先取值後運算 int i=4; int j=i++; i=5;j=4; 3 //++i 先運算後取值 int i=4;int j=++i; i=5;j=5; 4 public class Test6 { 5 public static void mai ...
  • 建議79:集合中的哈希碼不要重覆 在一個列表中查找某值是非常耗費資源的,隨機存取的列表是遍歷查找,順序存儲的列表是鏈表查找,或者是Collections的二分法查找,但這都不夠快,畢竟都是遍歷嘛,最快的還要數以Hash開頭的集合(如HashMap、HashSet等類)查找,我們以HashMap為例, ...
  • 1、原型結構圖 代碼 3、談談淺複製和深複製 淺複製:被覆制對象的所有變數都含有與原來的對象相同的值,而所有的對其他對象的引用都仍指向原來的對象 深複製:把原來引用對象的變數指向複製過來的新對象,而不是原來被原有的被引用的對象 深拷貝和淺拷貝,會發生深拷貝的是java 的 8種基本數據類型和他們的封 ...
  • 很多書上對設計模式的講解很詳細,可過一段時間就忘記了,這是我對設計模式的理解,便於記憶 單一設計原則:形象的比喻為照相機與手機,手機雖然功能多,但照相效果比不上功能單一的照相機 開-閉原則:軟體實體(類,模塊等)應該擴展,但不可修改 依賴倒置原則:抽象不應該依賴於細節,細節應該依賴於抽象,高層模塊不 ...
  • 1、簡單工廠模式如圖 代碼: 缺點:簡單工廠模式需要客戶端認識兩個類,Cash和CashFactory 優點:子類的實例化被工廠封裝了起來,客戶端看不到 2、策略模式如圖 代碼: 缺點:客戶端(測試端)完全暴露了實現的子類 優點:策略模式的優點是簡化了單元測試,因為每一個演算法都有自己的類,可以通過自 ...
  • Ajax及其工作原理 AJAX 是一種與伺服器交換數據無需刷新網頁的技術,最早由Google公司在谷歌地圖裡使用,並迅速風靡。 AJAX是不能跨域的,如需跨域,可以使用document.domain='a.com';或者使用伺服器代理,代理XMLHttpRequest文件 AJAX是基於現有的Int ...
  • 首先是apply()一個很強大的功能——能將一個數組預設轉化為參數列表!!! 應用: 1.求出一個數組中的最大值 Math.max()方法接受多個參數,但是不接受數組,所以直接Math.max(arr)是無法達到效果的,由apply()將數組轉化成參數列表進行操作。 2.合併數組 ①使用concat ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...