Error: [$compile:multidir] Multiple directives [statbox, statbox] asking for template on:Wiele dyrektyw prośbą o szablonie na
(konsola)
Wewnątrz index.html
<script src="js/dashboard/dashboard.module.js"></script>
<script src="js/dashboard/dashboard.component.js"></script>
<script src="js/dashboard/statbox.component.js"></script>
wewnątrz dashboard.module.js
var dashboardModule = angular.module('dashboard', ['ngRoute']);
Wewnątrz da shboard.component.js
angular.module('dashboard').component('dashboard', {
templateUrl: 'templates/dashboard/dashboard.template.html',
controller: ['$scope', '$routeParams', '$http', '$rootScope', '$log', function DashboardController($scope, $routeParams, $http, $rootScope, $log) {
...stuff NOT REFERENCING STATBOX by any means...
}]
});
Inside statbox.component.js
angular.module('dashboard').component('statbox', {
templateUrl: 'templates/dashboard/statbox.template.html',
controller: ['$http', '$rootScope', '$log', function StatboxController($http, $rootScope, $log) {
... some random get request ...
}]
});
i wewnątrz app.js
var app = angular.module('buttonMasher', ['ngRoute', 'dashboard', ...]);
Wewnątrz dashboard.template.html
... stuff ...
<div id="history">
... stuff ...
<p><b>Statbox</b></p>
<statbox></statbox>
</div>
Wewnątrz statbox.template.html
<div id="statbox">
<p>{{$ctrl.statboxText}}</p>
Co robię źle i dlaczego otrzymuję ten błąd wielu dyrektyw?
Ilekroć komentuję <script src="js/dashboard/statbox.component.js"></script>
z pliku index.html wszystko działa, ale kontroler statystyk nie jest ładowany.
(Full projekt jest tutaj: Github: carloworks/masher - Można sklonować i uruchomić sprężynę profil „dev” włączone.)
należy dodać kod HTML, gdzie wywołać zarówno komponenty – Karim
@Karim edytowany, przepraszam mój zły –