web-dev-qa-db-ja.com

Angular2ベータ-HTTP_PROVIDERSのブートストラップ-"予期しないトークン<"

5分間のクイックスタート から始めて、angular2ベータ版で遊んでいて、困惑している問題に遭遇しました。

これは、私が抱えている問題を示す、簡単なバージョンです。最初に、hello worldアプリが完全に機能します。

package.json

{
   "name": "...",
   "version": "0.0.1",
   "description": "...",
   "author": {
   "name": "...",
   "email": "..."
    },
    "scripts": {
    "tsc": "tsc",
    "tsc:w": "tsc -w",
    "lite": "lite-server",
    "start": "concurrent \"npm run tsc:w\" \"npm run lite\" "
    },
    "license": "ISC",
    "dependencies": {
    "angular2": "2.0.0-beta.0",
    "bootstrap": "^3.3.6",
    "es6-promise": "^3.0.2",
    "es6-shim": "^0.33.3",
    "reflect-metadata": "^0.1.2",
    "rxjs": "5.0.0-beta.0",
    "systemjs": "0.19.6",
    "zone.js": "^0.5.10"
    },
    "devDependencies": {
    "concurrently": "^1.0.0",
    "lite-server": "^1.3.1",
    "TypeScript": "^1.7.3"
    }
}

index.html

<head>
<title>Title</title>
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<link href="styles.css" rel="stylesheet" />

<!-- 1. Load libraries -->
<script src="node_modules/es6-shim/es6-shim.js"></script>
<script src="node_modules/angular2/bundles/angular2-polyfills.js">    </script>
<script src="node_modules/systemjs/dist/system.src.js"></script>
<script src="node_modules/rxjs/bundles/Rx.js"></script>
<script src="node_modules/angular2/bundles/angular2.dev.js"></script>


<!-- 2. Configure SystemJS -->
<script>
    System.config({
        packages: {
            app: {
                format: 'register',
                defaultExtension: 'js'
            }
        }
    });
    System.import('app/boot')
          .then(null, console.error.bind(console));
</script>

</head>

<!-- 3. Display the application -->
<body>
    <my-app></my-app>
</body>

app/boot.ts

import {bootstrap}    from 'angular2/platform/browser'
import {AppComponent} from './app.component'
import {AccountService} from './accounts/account.service'

bootstrap(AppComponent);

app/app.component.ts

import {Component, View} from 'angular2/core';
import {RegisterFormComponent} from './accounts/register-form.component'
@Component({
    selector: 'my-app',
})
@View({
    template: 'hello world',
})
export class AppComponent {
}

私は必然的に自分のWeb APIサービスを呼び出したいので、フォローしようとしています Httpのドキュメント 、boot.tsを次のように更新します。

新しいapp/boot.ts

import {bootstrap}    from 'angular2/platform/browser'
import {AppComponent} from './app.component'
import {AccountService} from './accounts/account.service'
import {HTTP_PROVIDERS} from 'angular2/http';

bootstrap(AppComponent, [HTTP_PROVIDERS]);

そして、ここで物事が窒息します。

Chromeのおかげ:

uncaught SyntaxError: Unexpected token < - http:1
uncaught SyntaxError: Unexpected token < - angular2-polyfills.js:138
    evaluating http://localhost:3000/angular2/http
    error loading http://localhost:3000/app/boot.js

HTTP_PROVIDERSをコンポーネントのviewProviderとして設定しようとした場合も失敗します。

他の誰かがHttpをangular2ベータに適切に注入するのに運がありましたか?

  • Visual Studio 2015
  • Visual Studio用のNode.JSおよびNode.JSツール
  • 「NPMスタート」を使用してコンパイルおよび実行する
24
Cosmosis

このエラーは、SystemJSの使用時にHTMLに含まれていないものをインポートしようとすると発生します。 Webpackなどのモジュールバンドルは、これらすべてを処理します。

あなたの場合のために、あなたは別のバンドルであるHttpバンドルを追加する必要があります、例えば

<script src="https://code.angularjs.org/2.0.0-beta.0/http.dev.js"></script>

ルーターを使用しようとしたときにこの同じエラーが表示され、ルーターバンドルを追加するのを忘れました。

@ pkozlowski-opensourceのリポジトリからこれら2つの構成の違いを確認してください

  • SystemJSを使用 :この場合、使用する場合はhttpバンドルまたはルーターバンドルを追加する必要があります。
  • Webpackを使用 :この場合、Webpackはその中にすべてをバンドルしますbundle.jsファイルをご利用ください。

それが助けてうれしい。

52
Eric Martinez

Npmを使用している場合は、ローカルインストールへのhttp参照を含むスクリプトタグを含めます。

<script src="node_modules/angular2/bundles/http.dev.js"></script>
11
E. Fortes