3

我正在尝试将 angular2 集成到我的 PHP 应用程序中。这是我执行的步骤

  1. 包括必要的JS:

../node_modules/angular2/bundles/angular2-polyfills.js ../node_modules/systemjs/dist/system.src.js ../node_modules/typescript/lib/typescript.js ../node_modules/rxjs/bundles/Rx.js ../node_modules/angular2/bundles/angular2.dev.js

  1. 在 Typescript 中创建 angular2 组件:

import {Component} from 'angular2/core'; @Component({ selector: 'hello-world', template: 'My First Angular 2 App' })
export class AppComponent { }

  1. 配置:

<script> System.config({ transpiler: 'typescript', typescriptOptions: { emitDecoratorMetadata: true } }); </script>

  1. 引导程序:

<script> System.import('angular2/platform/browser').then(function(ng){ System.import('js/app.ts').then(function(src) { ng.bootstrap(src.AppComponent); }).then(null, console.error.bind(console)); }); </script>

输出: 在此处输入图像描述

编辑:

看来prototype.js和angular 2有冲突。见pluker:http ://plnkr.co/edit/XKKpriTPrTX3tXqqz8v2?p=preview

4

1 回答 1

3

我有几次这个错误。据此:Angular Quickstart

您可能缺少几个脚本:

<script src="node_modules/es6-shim/es6-shim.min.js"></script>
<script src="node_modules/systemjs/dist/system-polyfills.js"></script>

如果使用 Internet Explorer,您还应该记住包括:

<script src="node_modules/angular2/es6/dev/src/testing/shims_for_IE.js"></script>
于 2016-03-01T16:37:26.903 回答