2017-04-19 3 views
0

abcApp.controller ( 'tgroupCtrl', [ '$ ionicHistory', function ($ scope, $ ionicHistory) { $ scope.subheader = "Daily Drill" ; } ] );

Der Fehler, die ich erhalte ist

ionic.bundle.js: 17696 Fehler: [$ Injektor: UNPR] Unbekannter Anbieter: $ ionicHistoryProvider < - $ ionicHistory < - ÑGeschichte

Antwort

0
angular.module('abcApp', ['ionicModuleOrWhatever']) 
.controller('tgroupCtrl', ['$ionicHistory', function ($ionicHistory) { 
    // Do something with $ionicHistory 
}]); 
+0

Danke für die Antwort, aber das Problem ist immer noch da. –

Verwandte Themen