# Conflicts: # aio/content/cli/index.md # aio/content/guide/accessibility.md # aio/content/guide/ajs-quick-reference.md # aio/content/guide/angular-compiler-options.md # aio/content/guide/animations.md # aio/content/guide/aot-compiler.md # aio/content/guide/architecture-components.md # aio/content/guide/architecture-modules.md # aio/content/guide/architecture-next-steps.md # aio/content/guide/architecture-services.md # aio/content/guide/attribute-directives.md # aio/content/guide/bootstrapping.md # aio/content/guide/browser-support.md # aio/content/guide/cli-builder.md # aio/content/guide/comparing-observables.md # aio/content/guide/component-styles.md # aio/content/guide/creating-libraries.md # aio/content/guide/dependency-injection-in-action.md # aio/content/guide/dependency-injection-navtree.md # aio/content/guide/dependency-injection-providers.md # aio/content/guide/dependency-injection.md # aio/content/guide/deployment.md # aio/content/guide/deprecations.md # aio/content/guide/displaying-data.md # aio/content/guide/dynamic-component-loader.md # aio/content/guide/elements.md # aio/content/guide/file-structure.md # aio/content/guide/glossary.md # aio/content/guide/http.md # aio/content/guide/i18n.md # aio/content/guide/ivy-compatibility.md # aio/content/guide/language-service.md # aio/content/guide/lifecycle-hooks.md # aio/content/guide/module-types.md # aio/content/guide/ngmodule-faq.md # aio/content/guide/ngmodule-vs-jsmodule.md # aio/content/guide/ngmodules.md # aio/content/guide/observables-in-angular.md # aio/content/guide/pipes.md # aio/content/guide/providers.md # aio/content/guide/releases.md # aio/content/guide/route-animations.md # aio/content/guide/router-tutorial.md # aio/content/guide/router.md # aio/content/guide/rx-library.md # aio/content/guide/schematics-authoring.md # aio/content/guide/schematics-for-libraries.md # aio/content/guide/service-worker-config.md # aio/content/guide/service-worker-getting-started.md # aio/content/guide/structural-directives.md # aio/content/guide/styleguide.md # aio/content/guide/template-syntax.md # aio/content/guide/template-typecheck.md # aio/content/guide/testing.md # aio/content/guide/typescript-configuration.md # aio/content/guide/upgrade-setup.md # aio/content/guide/user-input.md # aio/content/guide/using-libraries.md # aio/content/guide/web-worker.md # aio/content/guide/workspace-config.md # aio/content/marketing/docs.md # aio/content/marketing/events.html # aio/content/navigation.json # aio/content/start/index.md # aio/content/start/start-data.md # aio/content/start/start-deployment.md # aio/content/tutorial/toh-pt2.md # aio/content/tutorial/toh-pt4.md # aio/package.json # aio/src/app/app.component.ts # aio/src/app/layout/footer/footer.component.html # aio/src/app/shared/custom-icon-registry.ts # aio/src/environments/environment.stable.ts # aio/tools/stackblitz-builder/builder.js # aio/tools/transforms/angular-content-package/index.js # aio/tools/transforms/templates/api/lib/memberHelpers.html # aio/yarn.lock # integration/ng_elements/e2e/app.e2e-spec.ts # integration/ng_elements/src/app.ts # packages/common/src/pipes/date_pipe.ts # packages/core/src/metadata/directives.ts # packages/core/src/metadata/ng_module.ts # packages/core/src/render/api.ts # packages/forms/src/directives/ng_model.ts # packages/forms/src/form_builder.ts # packages/forms/src/model.ts # packages/platform-browser/src/browser.ts # packages/router/src/config.ts # packages/router/src/directives/router_link.ts # packages/router/src/directives/router_link_active.ts # packages/router/src/events.ts # packages/router/src/router.ts # packages/router/src/router_module.ts # packages/router/src/router_state.ts
13 KiB
Browser support
浏览器支持
Angular supports most recent browsers. This includes the following specific versions:
Angular 支持大多数常用浏览器,包括下列版本:
<td>
Chrome
</td>
<td>
latest
最新版
</td>
<td>
Firefox
</td>
<td>
latest and extended support release (ESR)
最新版以及扩展支持版本(ESR)
</td>
<td>
Edge
</td>
<td>
2 most recent major versions
最近的两个主版本
</td>
<td>
Safari
</td>
<td>
2 most recent major versions
最近的两个主版本
</td>
<td>
iOS
</td>
<td>
2 most recent major versions
最近的两个主版本
</td>
<td>
Android
</td>
<td>
Q (10.0), Pie (9.0), Oreo (8.0), Nougat (7.0)
</td>
|
|
---|---|
| |
Angular's continuous integration process runs unit tests of the framework on all of these browsers for every pull request, using Sauce Labs and BrowserStack.
Angular 在持续集成过程中,对每一个提交都会使用 SauceLabs 和 Browserstack 在上述所有浏览器上执行单元测试。
Polyfills
腻子脚本 (polyfill)
Angular is built on the latest standards of the web platform. Targeting such a wide range of browsers is challenging because they do not support all features of modern browsers. You compensate by loading polyfill scripts ("polyfills") for the browsers that you must support. The table below identifies most of the polyfills you might need.
Angular 构建于 Web 平台的最新标准之上。 要支持这么多浏览器是一个不小的挑战,因为它们不支持现代浏览器的所有特性。 你可以通过加载腻子脚本("polyfills")来为想要支持的浏览器弥补这些特性。 下表 列出了可能用到的大多数腻子脚本。
The suggested polyfills are the ones that run full Angular applications. You may need additional polyfills to support features not covered by this list. Note that polyfills cannot magically transform an old, slow browser into a modern, fast one.
这些建议的腻子脚本是运行完整 Angular 应用所需的。 你可能还会需要另一些的腻子脚本来支持没有出现在此列表中的哪些特性。 注意,这些腻子脚本并没有神奇的魔力来把老旧、慢速的浏览器变成现代、快速的浏览器,它只是填充了 API。
In Angular CLI version 8 and higher, applications are built using differential loading, a strategy where the CLI builds two separate bundles as part of your deployed application.
在 Angular CLI 版本 8 和更高版本中,应用程序是使用差异化加载的方式构建的,差异化加载是一种策略,CLI 会构建两个单独的捆绑包作为已部署应用程序的一部分。
-
The first bundle contains modern ES2015 syntax, takes advantage of built-in support in modern browsers, ships less polyfills, and results in a smaller bundle size.
第一个捆绑包中包含现代 ES2015 语法,利用了现代浏览器中的内置支持,减少了 polyfill 的发布,并减小了捆绑包的大小。
-
The second bundle contains code in the old ES5 syntax, along with all necessary polyfills. This results in a larger bundle size, but supports older browsers.
第二个捆绑包中包含旧 ES5 语法中的代码以及所有必要的 polyfill。这会导致更大的捆绑包大小,但支持较旧的浏览器。
This strategy allows you to continue to build your web application to support multiple browsers, but only load the necessary code that the browser needs. For more information about how this works, see Differential Loading in the Deployment guide.
通过此策略,你可以继续构建 Web 应用程序以支持多个浏览器,但仅加载当前浏览器所需的必要代码。关于此工作原理的更多信息,请参阅《部署指南》中的“差异化加载 ”。
Enabling polyfills with CLI projects
在 CLI 项目中启用腻子脚本
The Angular CLI provides support for polyfills. If you are not using the CLI to create your projects, see Polyfill instructions for non-CLI users.
Angular CLI 提供了对腻子脚本的支持。如果未使用 CLI 创建项目,请参阅针对非 CLI 用户的腻子脚本说明。
When you create a project with the ng new
command, a src/polyfills.ts
configuration file is created as part of your project folder.
This file incorporates the mandatory and many of the optional polyfills as JavaScript import
statements.
使用 ng new
命令创建项目时,会在项目文件夹中创建一个 src/polyfills.ts
配置文件。该文件包含许多强制性和可选腻子脚本的 JavaScript import
语句。
-
The npm packages for the mandatory polyfills (such as
zone.js
) are installed automatically for you when you create your project withng new
, and their correspondingimport
statements are already enabled in thesrc/polyfills.ts
configuration file.使用
ng new
创建项目时,会自动为你安装强制性zone.js
的 npm 捆绑包(例如zone.js
),并且它对应的import
语句已在src/polyfills.ts
配置文件中启用。 -
If you need an optional polyfill, you must install its npm package, then uncomment or create the corresponding import statement in the
src/polyfills.ts
configuration file.如果需要可选的腻子脚本,则必须安装其 npm 捆绑包,然后取消注释或在
src/polyfills.ts
配置文件中创建相应的 import 语句。
For example, if you need the optional web animations polyfill, you could install it with npm
, using the following command (or the yarn
equivalent):
比如,如果需要可选的 Web 动画腻子脚本,则可以使用以下命令来通过 npm
(或等效的 yarn
)安装它:
You can then add the import statement in the src/polyfills.ts
file.
For many polyfills, you can simply un-comment the corresponding import
statement in the file, as in the following example.
然后你还要在 src/polyfills.ts
文件中添加导入语句。
对于大多数腻子脚本,你可以直接在此文件中反注释对应的 import
语句,如下所示。
-
Required to support Web Animations
@angular/platform-browser/animations
. -
Needed for: All but Chrome, Firefox and Opera. https://caniuse.com/web-animation **/ import 'web-animations-js'; // Run
npm install --save web-animations-js
.
If the polyfill you want is not already in polyfills.ts
file, add the import
statement by hand.
如果 polyfills.ts
文件中没有你想要的腻子脚本,请手动添加 import
语句。
{@a polyfill-libs}
Mandatory polyfills
强制性腻子脚本
These are the polyfills required to run an Angular application on each supported browser:
下表中的腻子脚本是每个浏览器中运行 Angular 应用时要用到哪些:
<th>
Browsers (Desktop & Mobile)
浏览器(桌面和移动)
</th>
<th>
Polyfills Required
需要的腻子脚本
</th>
<td>
Chrome, Firefox, Edge, <br>
Safari, Android, IE 11
</td>
<td>
[ES2015](guide/browser-support#core-es6)
</td>
Optional browser features to polyfill
可选浏览器特性的腻子脚本
Some features of Angular may require additional polyfills.
有些 Angular 特性可能需要额外的腻子脚本。
<th>
Feature
特性
</th>
<th>
Polyfill
腻子脚本
</th>
<th style="width: 50%">
Browsers (Desktop & Mobile)
浏览器(桌面和移动)
</th>
<td>
[AnimationBuilder](api/animations/AnimationBuilder).
(Standard animation support does not require polyfills.)
[AnimationBuilder](api/animations/AnimationBuilder)。
(支持标准动画不需要腻子脚本。)
</td>
<td>
[Web Animations](guide/browser-support#web-animations)
[Web 动画](guide/browser-support#web-animations)
</td>
<td>
<p>If AnimationBuilder is used, enables scrubbing
support for IE/Edge and Safari.
(Chrome and Firefox support this natively).</p>
<p>如果用到了 AnimationBuilder,还要启用 IE/Edge 和 Safari 的 scrubbing(擦除)支持
(Chrome 和 Firefox 对此提供了原生支持)</p>
</td>
<td>
[NgClass](api/common/NgClass) on SVG elements
在 SVG 元素上应用时
</td>
<td>
[classList](guide/browser-support#classlist)
</td>
<td>
IE 11
</td>
<td>
[Router](guide/router) when using
[hash-based routing](guide/router#location-strategy)
当使用[基于 hash 的路由](guide/router#location-strategy)时。
</td>
<td>
[ES7/array](guide/browser-support#core-es7-array)
</td>
<td>
IE 11
</td>
Suggested polyfills
建议的腻子脚本
The following polyfills are used to test the framework itself. They are a good starting point for an application.
下列腻子脚本是用来测试框架本身的。它们是应用程序的优质起点。
<th>
Polyfill
腻子脚本
</th>
<th>
License
授权方式
</th>
<th>
Size*
大小*
</th>
<td>
<a id='core-es7-array' href="https://github.com/zloirock/core-js/tree/v2/fn/array">ES7/array</a>
</td>
<td>
MIT
</td>
<td>
0.1KB
</td>
<td>
<a id='core-es6' href="https://github.com/zloirock/core-js">ES2015</a>
</td>
<td>
MIT
</td>
<td>
27.4KB
</td>
<td>
<a id='classlist' href="https://github.com/eligrey/classList.js">classList</a>
</td>
<td>
Public domain
公共域
</td>
<td>
1KB
</td>
<td>
<a id='intl' href="https://github.com/andyearnshaw/Intl.js">Intl</a>
</td>
<td>
MIT / Unicode license
</td>
<td>
13.5KB
</td>
<td>
<a id='web-animations' href="https://github.com/web-animations/web-animations-js">Web Animations</a>
</td>
<td>
Apache
</td>
<td>
14.8KB
</td>
* Figures are for minified and gzipped code, computed with the closure compiler.
* 这里的数据都按最小化并且 gzip 压缩后的版本算,是由closure compiler计算出的。
{@a non-cli}
Polyfills for non-CLI users
非 CLI 的用户的腻子脚本
If you are not using the CLI, add your polyfill scripts directly to the host web page (index.html
).
如果你不使用 CLI,就要直接把腻子脚本添加到宿主页(index.html
)中,就像这样:
For example:
比如:
<!-- pre-zone polyfills --> <script src="node_modules/core-js/client/shim.min.js"></script> <script src="node_modules/web-animations-js/web-animations.min.js"></script> <script> /** * you can configure some zone flags which can disable zone interception for some
* asynchronous activities to improve startup performance - use these options only
* if you know what you are doing as it could result in hard to trace down bugs..
*/
// __Zone_disable_requestAnimationFrame = true; // disable patch requestAnimationFrame
// __Zone_disable_on_property = true; // disable patch onProperty such as onclick
// __zone_symbol__UNPATCHED_EVENTS = ['scroll', 'mousemove']; // disable patch specified eventNames
/*
* in IE/Edge developer tools, the addEventListener will also be wrapped by zone.js
* with the following flag, it will bypass `zone.js` patch for IE/Edge
*/
// __Zone_enable_cross_context_check = true;
</script> <!-- zone.js required by Angular --> <script src="node_modules/zone.js/bundles/zone.umd.js"></script>
<!-- application polyfills -->