現在、私は学校のプロジェクトで働いており、angularJs と流星を使用していくつかのグラフを表示したいと考えています。
ui-router プラグインを使用したい。しかし、それを使用しようとすると、次のエラーが発生します。
Error: only one instance of babel/polyfill is allowed
at Object.eval (eval at <anonymous> (http://localhost:3000/packages/jquery.js?hash=22a0055f59bd150c435c5aba34c7c59076b8bcd9:397:22), <anonymous>:2872:9)
at Object.1.180 (eval at <anonymous> (http://localhost:3000/packages/jquery.js?hash=22a0055f59bd150c435c5aba34c7c59076b8bcd9:397:22), <anonymous>:2875:4)
at s (eval at <anonymous> (http://localhost:3000/packages/jquery.js?hash=22a0055f59bd150c435c5aba34c7c59076b8bcd9:397:22), <anonymous>:2863:254)
at e (eval at <anonymous> (http://localhost:3000/packages/jquery.js?hash=22a0055f59bd150c435c5aba34c7c59076b8bcd9:397:22), <anonymous>:2863:425)
at eval (eval at <anonymous> (http://localhost:3000/packages/jquery.js?hash=22a0055f59bd150c435c5aba34c7c59076b8bcd9:397:22), <anonymous>:2863:443)
at eval (eval at <anonymous> (http://localhost:3000/packages/jquery.js?hash=22a0055f59bd150c435c5aba34c7c59076b8bcd9:397:22), <anonymous>:7043:4)
at eval (eval at <anonymous> (http://localhost:3000/packages/jquery.js?hash=22a0055f59bd150c435c5aba34c7c59076b8bcd9:397:22), <anonymous>:7050:3)
at eval (<anonymous>)
at http://localhost:3000/packages/jquery.js?hash=22a0055f59bd150c435c5aba34c7c59076b8bcd9:397:22
at Function.globalEval (http://localhost:3000/packages/jquery.js?hash=22a0055f59bd150c435c5aba34c7c59076b8bcd9:398:7) <div ui-view="" class="ng-scope" data-ng-animate="1">
また、次の警告が表示されます。
Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
このメッセージが私に何を伝えたいのか、私にはまったくわかりません。バベル/ポリフィルを複数回ロードしませんでした。このメッセージを受け取るまで、私はこのプラグインのことさえ知りませんでした。
これは、ui-router コードを含む私の main.js です。
import angular from 'angular';
import angularMeteor from 'angular-meteor';
import uiRouter from 'angular-ui-router';
import ngMaterial from 'angular-material';
import '../../../node_modules/angular-material/angular-material.css'
import '../own.css';
import template from './main.html';
import { name as Navigation } from '../navigation/navigation';
import {name as Toolbar} from '../toolbar/toolbar';
import {name as View1} from '../view1/view1';
import {name as View2} from '../view2/view2';
class Main {}
const name = 'main';
// create a module
export default angular.module(name, [
angularMeteor,
uiRouter,
Navigation,
Toolbar,
View2,
View1,
ngMaterial
]).component(name, {
template,
controllerAs: name,
controller: Main
})
.config(config);
function config($mdThemingProvider,$urlRouterProvider,$stateProvider ) {
'ngInject';
$urlRouterProvider.otherwise('view1');
$stateProvider
.state('view1', {
url: '/',
templateUrl: 'test.html'
});
$mdThemingProvider
.theme('default')
.primaryPalette('orange')
.accentPalette('deep-orange')
.warnPalette('red');
}
これは、ビューを挿入する必要がある私の main.html のコードです。
<div layout="column" style="height: 100%">
<toolbar scroll></toolbar>
<section layout="row" flex>
<navigation></navigation>
<md-content flex layout-padding style="margin-top: 75px">
<div ui-view=""></div>
</md-content>
</section>
ui-router がなくても問題なく動作します。
ここで何が問題なのですか?