部署

This page describes tools and techniques for deploy and optimize your Angular application.

本章会描述部署和优化Angular应用的工具与技术。

Table of contents

目录

Overview

概览

This guide describes techniques for preparing and deploying an Angular application to a server running remotely. The techniques progress from easy but suboptimal to more optimal and more involved.

本章描述把Angular应用发布到远端服务器时所需的准备与部署技术。从简单却未优化的版本到充分优化但涉及更多知识的版本。

Simplest deployment possible

最简化的部署方式

The simplest way to deploy the app is to publish it to a web server directly out of the development environment.

部署应用最简化的方式是直接把它发布到开发环境之外的Web服务器上。

It's already running locally. You'll just copy it, almost as is, to a non-local server that others can reach.

它已经在本地运行过了。我们基本上只要把它原封不动的复制到别人能访问到的非本地服务器上就可以了。

  1. Copy everything (or almost everything) from the local project folder to a folder on the server.

    把一切文件(或几乎一切文件)从本地项目目录下复制到服务器的目录下。

  2. If you're serving the app out of a subfolder, edit a version of index.html to set the <base href> appropriately. For example, if the URL to index.html is www.mysite.com/my/app/, set the base href to <base href="/my/app/">. Otherwise, leave it alone. More on this below.

    如果准备把该应用放在子目录下,就要编辑index.html,并适当设置<base href>。 比如,如果到index.html的URL是www.mysite.com/my/app/,就把基地址设置为<base href="/my/app/">。如果是放在根路径下就不用动它。 详情参见稍后

  3. Configure the server to redirect requests for missing files to index.html. More on this below.

    把服务器上缺失的文件重定向到index.html,详情参见稍后

  4. Enable production mode as described below (optional).

    按照稍后的描述启用生产模式(可选)。

That's the simplest deployment you can do.

这就是最简化的部署方式。

This is not a production deployment. It's not optimized and it won't be fast for users. It might be good enough for sharing your progress and ideas internally with managers, teammates, and other stakeholders. Be sure to read about optimizing for production below.

这不是生产级部署。它没有优化过,并且对用户来说也不够快。 但是当你向经理、团队成员或其它利益相关者内部分享你的进度和想法时它是足够的。 一定要读读稍后的为生产环境优化

Load npm package files from the web (SystemJS)

从Web上加载npm包(SystemJS)

The node_modules folder of npm packages contains much more code than is needed to actually run your app in the browser. The node_modules for the Quickstart installation is typically 20,500+ files and 180+ MB. The application itself requires a tiny fraction of that to run.

node_modules文件夹包含着在浏览器中运行应用时所需的更多代码。 "快速起步"项目中所需的node_modules通常由20,500+个文件和180+ MB的体积。 运行应用时其实只需要其中很小的一部分。

It takes a long time to upload all of that useless bulk and users will wait unnecessarily while library files download piecemeal.

上传这些不需要的文件需要很长时间,而在库的下载期间,用户得进行不必要的等待。

Load the few files you need from the web instead.

我们可以转而从网上下载所需的这少量文件。

(1) Make a copy of index.html for deployment and replace all node_module scripts with versions that load from the web. It might look like this.

(1) 复制一份专用于部署的index.html,并把所有的node_module脚本替换成加载网上的版本。代码如下:

<!-- Polyfills --> <script src="https://unpkg.com/core-js/client/shim.min.js"></script> <!-- Update these package versions as needed --> <script src="https://unpkg.com/zone.js@0.8.4?main=browser"></script> <script src="https://unpkg.com/systemjs@0.19.39/dist/system.src.js"></script>

(2) Replace the systemjs.config.js script with a script that loads systemjs.config.server.js.

(2) 把systemjs.config.js脚本改为加载systemjs.config.server.js

<!-- This SystemJS configuration loads umd packages from the web --> <script src="systemjs.config.server.js"></script>

(3) Add systemjs.config.server.js (shown in the code sample below) to the src/ folder. This alternative version configures SystemJS to load UMD versions of Angular (and other third-party packages) from the web.

(3) 把 systemjs.config.server.js(稍后有代码)复制到src/文件夹。 这个版本会从网上加载Angular的UMD版本(和其它第三方包)。

Modify systemjs.config.server.js as necessary to stay in sync with changes you make to systemjs.config.js.

把对systemjs.config.js的修改也随时同步到systemjs.config.server.js文件。

Notice the paths key:

注意paths属性:

paths: { 'npm:': 'https://unpkg.com/' // path serves as alias },

In the standard SystemJS config, the npm path points to the node_modules/. In this server config, it points to https://unpkg.com, a site that hosts npm packages, and loads them from the web directly. There are other service providers that do the same thing.

在标准的SystemJS配置中,npm路径指向node_modules/。 在服务器端的配置中,它指向https://unpkg.com(一个专门存放npm包的服务器), 并从网上直接加载它们。 还有另一些服务提供商做同样的事。

If you are unwilling or unable to load packages from the open web, the inventory in systemjs.config.server.js identifies the files and folders that you would copy to a library folder on the server. Then change the config's 'npm' path to point to that folder.

如果你不想或无法从公网上加载这些包,也可以把systemjs.config.server.js中所指出的这些文件或文件夹复制到服务器上的一个库目录。 然后修改配置中的'npm'路径指向该文件夹。

Practice with an example

用一个例子实践一下

The following trivial router sample app shows these changes.

下面这个例子展示了所有的修改。

<!DOCTYPE html> <html> <head> <!-- Doesn't load from node_modules! --> <!-- Set the base href --> <base href="/"> <title>Simple Deployment</title> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="styles.css"> <!-- Polyfills --> <script src="https://unpkg.com/core-js/client/shim.min.js"></script> <!-- Update these package versions as needed --> <script src="https://unpkg.com/zone.js@0.8.4?main=browser"></script> <script src="https://unpkg.com/systemjs@0.19.39/dist/system.src.js"></script> <!-- This SystemJS configuration loads umd packages from the web --> <script src="systemjs.config.server.js"></script> <script> System.import('main.js') .catch(function(err){ console.error(err); }); </script> </head> <body> <my-app>loading...</my-app> </body> </html> /** * System configuration for deployment without installing node_modules * Loads umd packages from the web instead * Adjust as necessary for your application needs. */ (function (global) { System.config({ paths: { 'npm:': 'https://unpkg.com/' // path serves as alias }, // map tells the System loader where to look for things map: { app: 'app', // location of transpiled app files // angular minimized umd bundles '@angular/core': 'npm:@angular/core/bundles/core.umd.min.js', '@angular/common': 'npm:@angular/common/bundles/common.umd.min.js', '@angular/compiler': 'npm:@angular/compiler/bundles/compiler.umd.min.js', '@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.min.js', '@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.min.js', '@angular/http': 'npm:@angular/http/bundles/http.umd.min.js', '@angular/router': 'npm:@angular/router/bundles/router.umd.min.js', '@angular/router/upgrade': 'npm:@angular/router/bundles/router-upgrade.umd.min.js', '@angular/forms': 'npm:@angular/forms/bundles/forms.umd.min.js', '@angular/upgrade': 'npm:@angular/upgrade/bundles/upgrade.umd.min.js', '@angular/upgrade/static': 'npm:@angular/upgrade/bundles/upgrade-static.umd.min.js', // other libraries 'rxjs': 'npm:rxjs@5.0.1', 'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js' }, // 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' } } }); })(this); import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; import { AppModule } from './app/app.module'; import { enableProdMode } from '@angular/core'; // Enable production mode unless running locally if (!/localhost/.test(document.location.host)) { enableProdMode(); } platformBrowserDynamic().bootstrapModule(AppModule); import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { RouterModule, Routes } from '@angular/router'; import { AppComponent } from './app.component'; import { CrisisListComponent } from './crisis-list.component'; import { HeroListComponent } from './hero-list.component'; const appRoutes: Routes = [ { path: 'crisis-center', component: CrisisListComponent }, { path: 'heroes', component: HeroListComponent }, { path: '', redirectTo: '/heroes', pathMatch: 'full' } ]; @NgModule({ imports: [ BrowserModule, RouterModule.forRoot(appRoutes) ], declarations: [ AppComponent, CrisisListComponent, HeroListComponent ], bootstrap: [ AppComponent ] }) export class AppModule { } import { Component } from '@angular/core'; @Component({ selector: 'my-app', template: ` <h1>Simple Deployment</h1> <nav> <a routerLink="/crisis-center" routerLinkActive="active">Crisis Center</a> <a routerLink="/heroes" routerLinkActive="active">Heroes</a> </nav> <router-outlet></router-outlet> ` }) export class AppComponent { } import { Component } from '@angular/core'; @Component({ template: ` <h2>CRISIS CENTER</h2> <p>Get your crisis here</p>` }) export class CrisisListComponent { } import { Component } from '@angular/core'; @Component({ template: ` <h2>HEROES</h2> <p>Get your heroes here</p> ` }) export class HeroListComponent { }

Practice with this sample before attempting these techniques on your application.

在真实应用中尝试这些技术之前,先用这个例子实践一下。

  1. Follow the setup instructions for creating a new project named simple-deployment.

    遵循设置步骤创建一个名叫simple-deployment的新项目。

  2. Add the "Simple deployment" sample files shown above.

    添加上述的“简单部署”范例文件。

  3. Run it with npm start as you would any project.

    像其它项目一样使用npm start来运行它。

  4. Inspect the network traffic in the browser developer tools. Notice that it loads all packages from the web. You could delete the node_modules folder and the app would still run (although you wouldn't be able to recompile or launch lite-server until you restored it).

    在浏览器的开发者工具中审查网络包。注意,它从网上加载了所有包。 我们可以删除node_modules文件夹,该应用仍然可以正常工作(但没办法再重新编译它或者启动lite-server了)。

  5. Deploy the sample to the server (minus the node_modules folder!).

    把范例工程部署到服务器上(但node_modules文件夹除外)

When you have that working, try the same process on your application.

掌握这些之后,就可以在你的真实项目中试用这些过程了。

Optimize for production

为生产环境优化

Although deploying directly from the development environment works, it's far from optimal.

虽然可以直接从开发环境下部署,但是它还远远没有优化。

The client makes many small requests for individual application code and template files, a fact you can quickly confirm by looking at the network tab in a browser's developer tools. Each small file download can spend more time communicating with the server than tranfering data.

客户端发起了很多小的请求来取得一个个单独的应用代码和模板文件,从浏览器开发工具的Network标签中就可以确认这一点。 每个小文件都会花费很多时间在与服务器建立通讯而不是传输内容上。

Development files are full of comments and whitespace for easy reading and debugging. The browser downloads entire libraries, instead of just the parts the app needs. The volume of code passed from server to client (the "payload") can be significantly larger than is strictly necessary to execute the application.

开发环境下的文件有很多注释和空格,以便于阅读和调试。 浏览器会下载整个库,而不只是应用需要的那部分。 从服务器传到客户端的代码(即有效载荷)的数量会显著大于应用运行时真正需要的那部分。

The many requests and large payloads mean the app takes longer to launch than it would if you optimized it. Several seconds may pass (or worse) before the user can see or do anything userful.

大量请求和载荷意味着应用相对于优化过的版本会花更多时间进行启动。 当用户看到什么或做什么有用的事情之前,就已经过去了(浪费了)很多秒。

Does it matter? That depends upon business and technical factors you must evaluate for yourself.

这重要吗?取决于很多业务和技术方面的因素,我们必须自己评估它们。

If it does matter, there are tools and techniques to reduce the number of requests and the size of responses.

如果重要,那么有很多工具和技术可以减少请求数和体积。

Each tool does something different. They work best in combination and are mutually reinforcing.

每个工具做的事情都不一样,但它们结合起来会相辅相成。

You can use any build system you like. Whatever system you choose, be sure to automate it so that building for production is a single step.

我们也可以使用任何喜欢的构建系统。 无论选择的是什么,都务必把它自动化,以便可以一步构建出产品。

Ahead-of-Time (AOT) compilation

预编译(AOT)

The Angular Ahead-of-Time compiler pre-compiles application components and their templates during the build process.

Angular的预编译器会在构建过程中预先编译应用的组件及其模板。

Apps compiled with AOT launch faster for several reasons.

预编译过的应用启动更快,原因如下:

Learn more about AOT Compilation in the AOT Cookbook which describes running the AOT compiler from the command line and using rollup for bundling, minification, uglification and tree shaking.

要了解AOT编译器的更多知识,参见烹饪宝典中的AOT一章, 它描述了如何在命令行中执行AOT编译器,并使用rollup进行构建、最小化、混淆和摇树优化。

Webpack (and AOT)

Webpack(与AOT)

Webpack 2 is another great option for inlining templates and style-sheets, for bundling, minifying, and uglifying the application. The "Webpack: an introduction" guide will get you started using webpack with Angular.

Webpack 2是另一个选项,它可以内联模板、样式表、打包、最小化和混淆应用。 "Webpack简介"一章中将会教你如何配合Angular使用Webpack。

Consider configuring Webpack with the official Angular Ahead-of-Time Webpack Plugin. This plugin transpiles the TypeScript application code, bundles lazy loaded NgModules separately, and performs AOT compilation — without any changes to the source code.

考虑使用官方的 Angular预编译插件来配置Webpack。 这个插件会转译TypeScript代码、独立打包延迟加载的NgModules,而且不用对源码做任何修改就能执行AOT编译。

Dead code elimination with rollup

使用rollup消除死代码

Any code that you don't call is dead code. You can reduce the total size of the application substantially by removing dead code from the application and from third-party libraries.

任何永远不会调到的代码就是死代码。 通过移除应用和第三方库中的死代码,可以实质性减小应用的总大小。

Tree shaking is a dead code elimination technique that removes entire exports from JavaScript modules. If a library exports something that the application doesn't import, a tree shaking tool removes it from the code base.

摇树优化是一种消除死代码的技术,它会从JavaScript模块中移除导出。 如果一个库导出了一些东西,但是应用代码没有导入过它,摇树工具就会从代码中移除它。

Tree shaking was popularized by Rollup, a popular tool with an ecosystem of plugins for bundling, minification, and uglification. Learn more about tree shaking and dead code elmination in this post by rollup-creator, Rich Harris.

常用的摇树优化工具是Rollup,一个带有查件的生态系统,可以完成打包、最小化和混淆。 要了解关于摇树优化和消除死代码技术的更多知识,参见这个帖子,它的作者就是rollup之父Rich Harris。

Pruned libraries

修剪库

Don't count on automation to remove all dead code.

不要指望自动移除所有死代码。

Remove libraries that you don't use, especially unnecessary scripts in index.html. Consider smaller alternatives to the libraries that you do use.

手动移除不用的库,特别是index.html中不用的脚本。 为实际使用的那些库则努力选择更小的代用库。

Some libraries offer facilities for building a custom, skinny version with just the features you need. Other libraries let you import features a la carte. RxJS is a good example; import RxJS Observable operators individually instead of the entire library.

有些库可以构建出只带所需特性的、自定义的、带皮肤的版本。另一些库则可以让你按需导入它的特性。 RxJS就是一个很好的例子,我们会单独导入Observable的操作符(operator),而不是导入整个库。

Measure performance first

首先,度量性能

You can make better decisions about what to optimize and how when you have a clear and accurate understanding of what's making the application slow. The cause may not be what you think it is. You can waste a lot of time and money optimizing something that has no tangible benefit or even makes the app slower. You should measure the app's actual behavior when running in the environments that are important to you.

如果我们能对“是什么导致了应用变慢”的问题有一个清晰、准确的理解,那就可以对优化什么、如何优化做出更好地决策了。 真正的原因可能并不是你所想的那样。 我们可能花费大量的时间和金钱去优化一些东西,但它却无法产生可感知的效果甚至让应用变得更慢。 我们应该在那些最重要的环境中实际运行,来度量应用的实际行为。

The Chrome DevTools Network Performance page is a good place to start learning about measuring performance.

Chrome开发工具的网络性能页是开始学习度量性能的好地方。

The WebPageTest tool is another good choice that can also help verify that your deployment was successful.

WebPageTest工具是另一个不错的选择,它能帮你验证你的部署是否成功了。

Angular configuration

Angular配置

Angular configuration can make the difference between whether the app launches quickly or doesn't load at all.

修改Angular配置可以显示出快速启动应用和完全不加载之间的差异。

The base tag

base标签

The HTML <base href="..."/> specifies a base path for resolving relative URLs to assets such as images, scripts, and style sheets. For example, given the <base href="/my/app/">, the browser resolves a URL such as some/place/foo.jpg into a server request for my/app/some/place/foo.jpg. During navigation, the Angular router uses the base href as the base path to component, template, and module files.

HTML中的<base href="..."/>用于指定一个解析相对路径的基地址,如图片、脚本和样式表。 比如,指定<base href="/my/app/">时,浏览器就会把some/place/foo.jpg这样的URL解析成到my/app/some/place/foo.jpg的服务端请求。 在浏览期间,Angular路由器会使用base href作为组件、模板和模块文件的基地址。

See also the APP_BASE_HREF alternative.

参见另一种备选方案APP_BASE_HREF

In development, you typically start the server in the folder that holds index.html. That's the root folder and you'd add <base href="/"> near the top of index.html because / is the root of the app.

在开发期间,我们通常会在index.html所在的目录中启动服务器。这个目录就是根目录,因为/就是本应用的根,所以我们要在index.html的顶部添加<base href="/">

But on the shared or production server, you might serve the app from a subfolder. For example, when the URL to load the app is something like http://www.mysite.com/my/app/, the subfolder is my/app/ and you should add <base href="/my/app/"> to the server version of the index.html.

但是在共享服务器或生产服务器上,我们可能得从子目录下启动服务器。 比如,当加载本应用的URL是http://www.mysite.com/my/app/时,子目录就是my/app/,而我们就要在服务器版的index.html中添加<base href="/my/app/">

When the base tag is misconfigured, the app fails to load and the browser console displays 404 - Not Found errors for the missing files. Look at where it tried to find those files and adjust the base tag appropriately.

base标签没有正确配置时,该应用会加载失败,并且浏览器的控制台会对这些缺失的文件显示404 - Not Found错误。 看看它在尝试从哪里查找那些文件,并据此调整base标签。

Enable production mode

启用生产模式

Angular apps run in development mode by default, as you can see by the following message on the browser console:

Angular应用默认运行在开发模式下,正如在浏览器控制台中看到的如下信息:

Angular is running in the development mode. Call enableProdMode() to enable the production mode. (Angular正运行在开发模式下。调用enableProdMode()来启用生产模式)

Switching to production mode can make it run faster by disabling development specific checks such as the dual change detection cycles.

切换到生产模式可以通过禁用开发环境下特有的检查(比如双重变更检测周期)来让应用运行得更快。

To enable production mode when running remotely, add the following code to the main.ts.

要在远程运行时启用生产模式,请把下列代码添加到main.ts中。

src/main.ts (enableProdMode)

import { enableProdMode } from '@angular/core'; // Enable production mode unless running locally if (!/localhost/.test(document.location.host)) { enableProdMode(); }

Lazy loading

惰性加载

You can dramatically reduce launch time by only loading the application modules that absolutely must be present when the app starts.

通过只加载应用启动时必须展示的那些应用模块,我们可以显著缩减启动时间。

Configure the Angular Router to defer loading of all other modules (and their associated code), either by waiting until the app has launched or by lazy loading them on demand.

配置Angular路由器可以延迟加载所有其它模块(以及与它们相关的代码),无论是等应用启动, 还是在需要时才惰性加载

Don't eagerly import something from a lazy loaded module

不要立即导入惰性加载模块中的任何东西

It's a common mistake. You've arranged to lazy load a module. But you unintentionally import it, with a JavaScript import statement, in a file that's eagerly loaded when the app starts, a file such as the root AppModule. If you do that, the module will be loaded immediately.

这是一种常犯的错误。 我们本打算惰性加载一个模块,但可能无意中在根模块AppModule文件中使用一个JavaScript的import语句导入了它。 这样一来,该模块就被立即加载了。

The bundling configuration must take lazy loading into consideration. Because lazy loaded modules aren't imported in JavaScript (as just noted), bundlers exclude them by default. Bundlers don't know about the router configuration and won't create separate bundles for lazy loaded modules. You have to create these bundles manually.

关于打包(bundle)方式的配置必须考虑到惰性加载问题。 因为惰性加载模块不能在JavaScript中导入(就像刚才说明的),打包器应该默认排除它们。 打包器不知道路由器的配置,并且不会为延迟加载模块创建单独的包。 我们不得不手动创建这些包。

The Angular Ahead-of-Time Webpack Plugin automatically recognizes lazy loaded NgModules and creates separate bundles for them.

Angular预编译插件会自动识别惰性加载的NgModules,并为它们创建单独的包。

Server configuration

服务端配置

This section covers changes you may have make to the server or to files deployed to the server.

这一节涵盖了我们对服务器或准备部署到服务器的文件要做的那些修改。

Routed apps must fallback to index.html

带路有的应用必须以index.html作为后备页面

Angular apps are perfect candidates for serving with a simple static HTML server. You don't need a server-side engine to dynamically compose application pages because Angular does that on the client-side.

Angular应用很适合用简单的静态HTML服务器提供服务。 我们不需要服务端引擎来动态合成应用页面,因为Angular会在客户端完成这件事。

If the app uses the Angular router, you must configure the server to return the application's host page (index.html) when asked for a file that it does not have.

如果该应用使用Angular路由器,我们就必须配置服务器,让它对不存在的文件返回应用的宿主页(index.html)。

A routed application should support "deep links". A deep link is a URL that specifies a path to a component inside the app. For example, http://www.mysite.com/heroes/42 is a deep link to the hero detail page that displays the hero with id: 42.

带路由的应用应该支持“深链接”。 所谓深链接就是指一个URL,它用于指定到应用内某个组件的路径。 比如,http://www.mysite.com/heroes/42就是一个到英雄详情页面的深链接,用于显示id: 42的英雄。

There is no issue when the user navigates to that URL from within a running client. The Angular router interprets the URL and routes to that page and hero.

当用户从运行中的客户端应用导航到这个URL时,这没问题。 Angular路由器会拦截这个URL,并且把它路由到正确的页面。

But clicking a link in an email, entering it in the browser address bar, or merely refreshing the browser while on the hero detail page — all of these actions are handled by the browser itself, outside the running application. The browser makes a direct request to the server for that URL, bypassing the router.

但是,当从邮件中点击链接或在浏览器地址栏中输入它或仅仅在英雄详情页刷新下浏览器时,所有这些操作都是由浏览器本身处理的,在应用的控制范围之外。 浏览器会直接向服务器请求那个URL,路由器没机会插手。

A static server routinely returns index.html when it receives a request for http://www.mysite.com/. But it rejects http://www.mysite.com/heroes/42 and returns a 404 - Not Found error unless it is configured to return index.html instead.

静态服务器会在收到对http://www.mysite.com/的请求时返回index.html,但是会拒绝对http://www.mysite.com/heroes/42的请求, 并返回一个404 - Not Found错误,除非,我们把它配置成转而返回index.html

Fallback configuration examples

后备页面配置范例

There is no single configuration that works for every server. The following sections describe configurations for some of the most popular servers. The list is by no means exhaustive, but should provide you with a good starting point.

没有一种配置可以适用于所有服务器。 后面这些部分会描述对常见服务器的配置方式。 这个列表虽然不够详尽,但可以为你提供一个良好的起点。

Development servers

开发服务器

historyApiFallback: { disableDotRule: true, htmlAcceptHeaders: ['text/html', 'application/xhtml+xml'] }

Production servers

生产服务器

RewriteEngine On # If an existing asset or directory is requested go to it as it is RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -f [OR] RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -d RewriteRule ^ - [L] # If the requested resource doesn't exist, use index.html RewriteRule ^ /index.html try_files $uri $uri/ /index.html; <system.webServer> <rewrite> <rules> <rule name="Angular Routes" stopProcessing="true"> <match url=".*" /> <conditions logicalGrouping="MatchAll"> <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> </conditions> <action type="Rewrite" url="/src/" /> </rule> </rules> </rewrite> </system.webServer> "rewrites": [ { "source": "**", "destination": "/index.html" } ]

Requesting services from a different server (CORS)

请求来自另一个服务器的服务(CORS)

Angular developers may encounter a cross-origin resource sharing error when making a service request (typically a data service request). to a server other than the application's own host server. Browsers forbid such requests unless the server permits them explicitly.

Angular开发者在向与该应用的宿主服务器不同域的服务器发起请求时,可能会遇到一种跨域资源共享(CORS)错误。 浏览器会阻止该请求,除非得到那台服务器的明确许可。

There isn't anything the client application can do about these errors. The server must be configured to accept the application's requests. Read about how to enable CORS for specific servers at enable-cors.org.

客户端应用对这种错误无能为力。 服务器必须配置成可以接受来自该应用的请求。 要了解如何对特定的服务器开启CORS,参见enable-cors.org

Next steps

下一步

If you want to go beyond the simple copy-deploy approach, read the AOT Cookbook next.

如果我们准备超越简单复制部署的方式,请参阅烹饪宝典中的AOT部分