イム:流星としてインストール(角-材料、角度関連するパッケージを遵守コンソールエラー
https://material.angularjs.org/latest/demo/tabs
、角度アニメーションなど)。
しかし、私は別のインストールで2台のコンピュータでこれを試しましたが、ウェブサイトがコンパイルされたときに一貫してこのエラーがクロムコンソールに表示されています(流星コンソールにエラーはありません)。その後、タブを切り替えることはなく、クリックするたびにエラーが表示されます。
私はここで解決策を見て、私は、私は流星のパッケージマネージャを使用していて、これは私に影響を与えるかを理解していない...
https://github.com/angular/angular.js/issues/11658
TypeError: runner.setHost is not a function
at angular-animate.js:2686
at Scope.$digest (angular_angular.js?hash=c17a5a9…:15961)
at Scope.$apply (angular_angular.js?hash=c17a5a9…:16175)
at angular_angular.js?hash=c17a5a9…:17942
at completeOutstandingRequest (angular_angular.js?hash=c17a5a9…:5567)
at angular_angular.js?hash=c17a5a9…:5844(anonymous function) @ angular_angular.js?hash=c17a5a9…:12535(anonymous function) @ angular_angular.js?hash=c17a5a9…:9307Scope.$digest @ angular_angular.js?hash=c17a5a9…:15963Scope.$apply @ angular_angular.js?hash=c17a5a9…:16175(anonymous function) @ angular_angular.js?hash=c17a5a9…:17942completeOutstandingRequest @ angular_angular.js?hash=c17a5a9…:5567(anonymous function) @ angular_angular.js?hash=c17a5a9…:5844
angular_angular.js?hash=c17a5a9…:12535 TypeError: animationRunner.done is not a function
at Array.triggerAnimationStart (angular-animate.js:3075)
at nextTick (angular-animate.js:423)
at scheduler (angular-animate.js:393)
at angular-animate.js:3087
at Scope.$digest (angular_angular.js?hash=c17a5a9…:15961)
at Scope.$apply (angular_angular.js?hash=c17a5a9…:16175)
at angular_angular.js?hash=c17a5a9…:17942
at completeOutstandingRequest (angular_angular.js?hash=c17a5a9…:5567)
at angular_angular.js?hash=c17a5a9…:5844
main.htmlを
<head>
<title>simple</title>
</head>
<body ng-app= 'myApp'>
<div ng-cloak>
<md-content>
<md-tabs md-dynamic-height md-border-bottom>
<md-tab label="one">
<md-content class="md-padding">
<h1 class="md-display-2">Tab One</h1>
<p>...</p>
</md-content>
</md-tab>
<md-tab label="two">
<md-content class="md-padding">
<h1 class="md-display-2">Tab Two</h1>
<p>...</p>
</md-content>
</md-tab>
<md-tab label="three">
<md-content class="md-padding">
<h1 class="md-display-2">Tab Three</h1>
<p>...</p>
</md-content>
</md-tab>
</md-tabs>
</md-content>
</div>
</body>
main.css:
import angular from 'angular';
import angularMeteor from 'angular-meteor';
import ngMaterial from 'angular-material';
//import ngAnimate from 'angular-animate';
//import ngAria from 'angular-aria';
var app = angular.module('myApp', ['ngMaterial']);
ご協力いただきありがとうございます!
hell yeah !!!働いた! – mariomol