Angular 2 non-cli添加polyfills.ts

时间:2017-05-30 19:42:55

标签: angular polyfills

我有一个有角度的2 app,我没有使用angular-cli来生成它。 我是Angular的新手,我正在尝试让我的应用程序与IE,旧的Safari等一起工作......

我读了很多关于polyfills.ts的内容,如何将其添加到我的angular 2应用程序中(我使用systemjs加载应用程序)

以下是我目前正在加载的脚本:

<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>

systemjs.config:

(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: '/js/angular/eventticketspage',

      // 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',
      'core-js': 'npm:core-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'
        },
        'core-js': {
            defaultExtension: 'js'
        }
    }
  });
})(this);

编辑:我可以通过添加脚本解决'intl'未定义:

    <script src="https://cdn.polyfill.io/v2/polyfill.min.js?features=Intl.~locale.en"></script>

<script src="//cdnjs.cloudflare.com/ajax/libs/classlist/2014.01.31/classList.min.js"></script>

但我想以正确的方式并使用Polyfills.ts

1 个答案:

答案 0 :(得分:1)

看起来你只需要手动完成。没有魔力。我刚从https://github.com/angular/angular/blob/master/aio/src/polyfills.ts复制了polyfills.ts并将其包含在我的源代码文件夹中。我没有评论IE的行,但离开了区域并反映了注释掉的行。然后在我的应用程序中我

(gdb) set disable-randomization off

导入pollyfills.ts文件,该文件又导入core-js / es6包。

我使用webpack作为模块捆绑器,所以我不确定system.js是如何工作的 - 但是主体是相同的,复制pollyfills文件并像任何其他模块一样导入它。哦,当然在你的package.json中你需要

import "../shared/pollyfills" // I have put pollyfills.ts in a shared folder
import "zone.js";
import "reflect-metadata";

或类似。