我想在我的PHP應用程序中整合angular2。 下面是已經執行Angular2 - 沒有提供ExceptionHandler
- 包括必要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
- 創建angular2在打字稿組分:
- 配置:
- 自舉:
import {Component} from 'angular2/core'; @Component({ selector: 'hello-world', template: 'My First Angular 2 App' })
export class AppComponent { }
<script> System.config({ transpiler: 'typescript', typescriptOptions: { emitDecoratorMetadata: true } }); </script>
<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衝突和角2.見pluker:http://plnkr.co/edit/XKKpriTPrTX3tXqqz8v2?p=preview
有seprate墊片文件爲每像IE瀏覽器? –
@PardeepJain不是我意識到的,但你可以查看該文件夾中的文件,看看有什麼:) – Rick
@PardeepJain:不,沒有。這個爲IE11的原因可以從該文件內容中找到。例如,'function.name'在所有其他主流瀏覽器上都能正常工作,但不能在IE中使用。 [Here's](http://stackoverflow.com/q/6903762)更多詳情。 –