.Net Core + Angular Cli / Angular4 開發環境搭建

1、基礎環境配置javascript

1.安裝VS 2017 v15.3或以上版本
2.安裝VS Code最新版本
3.安裝Node.js  v6.9以上版本
4.重置全局npm源,修正爲 淘寶的 NPM 鏡像:
npm install -g cnpm --registry=https://registry.npm.taobao.org
5.安裝TypeScript
cnpm install -g typescript typings
6.安裝 AngularJS CLI
cnpm install -g @angular/cli
7.安裝 Yarn
cnpm i -g yarn
yarn config set registry http://registry.npm.taobao.org
yarn config set sass-binary-site http://npm.taobao.org/mirrors/node-sass
8.啓用Yarn for Angular CLI
ng set --global packageManager=yarn
至此,開發環境的基礎配置工做基本完成。

 

2、 配置.Net Core項目css

 搭建.Net Core項目時,採用Api模板構建一個空的解決方案,並在此基礎上啓用靜態文件支持,詳細配置以下:html

 

 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Threading.Tasks;
 5 using Microsoft.AspNetCore.Builder;
 6 using Microsoft.AspNetCore.Hosting;
 7 using Microsoft.Extensions.Configuration;
 8 using Microsoft.Extensions.DependencyInjection;
 9 using Microsoft.Extensions.Logging;
10 
11 namespace App.Integration
12 {
13     public class Startup
14     {
15         public Startup(IHostingEnvironment env)
16         {
17             var builder = new ConfigurationBuilder()
18                 .SetBasePath(env.ContentRootPath)
19                 .AddJsonFile("appsettings.json", optional: false, reloadOnChange: true)
20                 .AddJsonFile($"appsettings.{env.EnvironmentName}.json", optional: true)
21                 .AddEnvironmentVariables();
22             Configuration = builder.Build();
23         }
24 
25         public IConfigurationRoot Configuration { get; }
26 
27         // This method gets called by the runtime. Use this method to add services to the container.
28         public void ConfigureServices(IServiceCollection services)
29         {
30             // Add framework services.
31             //services.AddMvc();
32         }
33 
34         // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
35         public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
36         {
37             loggerFactory.AddConsole(Configuration.GetSection("Logging"));
38             loggerFactory.AddDebug();
39 
40             //app.UseMvc();
41             app.UseDefaultFiles();
42             app.UseStaticFiles();
43         }
44     }
45 }

靜態文件須要安裝名爲Microsoft.AspNetCore.StaticFiles的nuget包,請自行從包管理中安裝。java

 3、配置Angular Cli調試環境node

在開始項目調試以前,咱們需將angular資源中的index.html移入wwwroot中,需注意,此index.html文件需是由ng build命令生成的版本,通常存儲在/dist目錄中webpack

在編譯angular資源前,咱們須要在angular cli設置中,將DeployUrl選項設置爲ng server的默認調試地址:web

"deployUrl": "//127.0.0.1:4200", // 指定站點的部署地址,該值最終會賦給webpack的output.publicPath,注意,ng serve啓動調試時並不會調研此參數

 

如下爲Angular Cli的各個配置項說明。  typescript

{
  "project": {
    "name": "angular-questionare",
    "ejected": false // 標記該應用是否已經執行過eject命令把webpack配置釋放出來
  },
  "apps": [
    {
      "root": "src", // 源碼根目錄
      "outDir": "dist", // 編譯後的輸出目錄,默認是dist/
      "assets": [ // 記錄資源文件夾,構建時複製到`outDir`指定的目錄
        "assets",
        "favicon.ico"
      ],
      "index": "index.html", // 指定首頁文件,默認值是"index.html"
      "main": "main.ts", // 指定應用的入門文件
      "polyfills": "polyfills.ts", // 指定polyfill文件
      "test": "test.ts", // 指定測試入門文件
      "tsconfig": "tsconfig.app.json", // 指定tsconfig文件
      "testTsconfig": "tsconfig.spec.json", // 指定TypeScript單測腳本的tsconfig文件
      "prefix": "app", // 使用`ng generate`命令時,自動爲selector元數據的值添加的前綴名
      "deployUrl": "//cdn.com.cn", // 指定站點的部署地址,該值最終會賦給webpack的output.publicPath,經常使用於CDN部署
      "styles": [ // 引入全局樣式,構建時會打包進來,經常使用語第三方庫引入的樣式
        "styles.css"
      ],
      "scripts": [ // 引入全局腳本,構建時會打包進來,經常使用語第三方庫引入的腳本
      ],
      "environmentSource": "environments/environment.ts", // 基礎環境配置
      "environments": { // 子環境配置文件
        "dev": "environments/environment.ts",
        "prod": "environments/environment.prod.ts"
      }
    }
  ],
  "e2e": {
    "protractor": {
      "config": "./protractor.conf.js"
    }
  },
  "lint": [
    {
      "project": "src/tsconfig.app.json"
    },
    {
      "project": "src/tsconfig.spec.json"
    },
    {
      "project": "e2e/tsconfig.e2e.json"
    }
  ],
  "test": {
    "karma": {
      "config": "./karma.conf.js"
    }
  },
  "defaults": { // 執行`ng generate`命令時的一些默認值
    "styleExt": "css", // 默認生成的樣式文件後綴名
    "component": {
      "flat": false, // 生成組件時是否新建文件夾包裝組件文件,默認爲false(即新建文件夾)
      "spec": true, // 是否生成spec文件,默認爲true
      "inlineStyle": false, // 新建時是否使用內聯樣式,默認爲false
      "inlineTemplate": false, // 新建時是否使用內聯模板,默認爲false
      "viewEncapsulation": "Emulated", // 指定生成的組件的元數據viewEncapsulation的默認值
      "changeDetection": "OnPush", // 指定生成的組件的元數據changeDetection的默認值
    }
  }
}

  

爲實現以.Net Core Api項目爲主體的站點結構,咱們需在使用ng server時啓用Deploy選項,打開對靜態資源「部署地址」的支持。注意:雙站部署可能會產生JS跨域,請自行解決npm

在命令行啓動Angular Cli調試服務器時加上deploy參數 ng serve --deploy-url '//localhost:4200/'json

最後,經過VS的F5命令,打開Api項目的運行時,咱們能夠看到網站的運行效果。Enjoy Coding~

 

相關文章
相關標籤/搜索