にフェッチすることが含まれているので、私はPhantomJsでこのエラーが発生していることに気付きました。@type/whatwg-fetch
があるのでpolyfillが含まれていると思いました。私はこのWebPACKの事情で推奨ポリフィルをロードするかどうかはわかりませんには、Aureliaのpolyfillをwebpack
Error: HttpClient requires a Fetch API implementation, but the current environment doesn't support it. You may need to load a polyfill such as https://github.com/github/fetch. in spec-bundle.js (line 18057)
、何NPMモジュール私はインストールする必要がありますか?私は、コードをフェッチ見ることができるとどのように私は(WebPACKのtypescriptです-webackスケルトンに基づく)のWebPACKに
この
import { Aurelia } from 'aurelia-framework';
import '../styles/styles.css';
import 'font-awesome/css/font-awesome.css';
import 'bootstrap/dist/css/bootstrap.css';
import 'bootstrap';
import * as Bluebird from 'bluebird';
import 'whatwg-fetch';
// we want font-awesome to load as soon as possible to show the fa-spinner
// comment out if you don't want a Promise polyfill (remove also from webpack.config.js)
Bluebird.config({ warnings: false });
export async function configure(aurelia: Aurelia) {
aurelia.use
.standardConfiguration()
.developmentLogging();
// Uncomment the line below to enable animation.
// aurelia.use.plugin('aurelia-animator-css');
// if the css animator is enabled, add swap-order="after" to all router-view elements
// Anyone wanting to use HTMLImports to load views, will need to install the following plugin.
// aurelia.use.plugin('aurelia-html-import-template-loader')
await aurelia.start();
aurelia.setRoot('app');
// if you would like your website to work offline (Service Worker),
// install and enable the @easy-webpack/config-offline package in webpack.config.js and uncomment the following code:
/*
const offline = await System.import('offline-plugin/runtime');
offline.install();
*/
}
、ここをしようとしたことを追加し、私は
npm ls whatwg-fetch slave-vi
[email protected] /home/xenoterracide/IdeaProjects/rpf-ui
└── [email protected]
をインストールし何ん私のapp-bundle.jsでは、しかし、私はまだ上記のエラーを投げてPhantomJSを参照してください
更新問題であるかもしれない、用途がフェッチ同型フェッチWHATWG表示されますか?私はPhantomJSエラーを取得しています。 – xenoterracide
'isomorphic-fetch'はブラウザコンテキストで' whatwg-fetch'を使います。 Polyfillの前にAureliaをインポートしているため、まだ表示されていないエラーです。 Polyfillsは常に最初に行くべきです、ここでの輸入問題の順序。 – Ambroos
は今夜試してみます。骨格がポリ袋としてブルーバードを輸入しているからです。 – xenoterracide