工場の方法論のドキュメントにある例に従って、独自のサービスを構築しようとしています。ただし、不明なプロバイダーエラーが引き続き発生するため、何か間違ったことをしたと思います。これは、宣言、構成、ファクトリー定義を含む私のアプリのコードです。
編集トラブルシューティングに役立つすべてのファイルを追加しました
EDITエラーの詳細は、getSettingsProviderを探しているため見つからないため、getSettingsの問題のようです
Error: [$injector:unpr] http://errors.angularjs.org/1.2.16/$injector/unpr? p0=getSettingsProvider%20%3C-%20getSettings
at Error (native)
at http://localhost/sw/selfservice/bower_components/angular/angular.min.js:6:450
at http://localhost/sw/selfservice/bower_components/angular/angular.min.js:35:431
at Object.c [as get] (http://localhost/sw/selfservice/bower_components/angular/angular.min.js:34:13)
at http://localhost/sw/selfservice/bower_components/angular/angular.min.js:35:499
at c (http://localhost/sw/selfservice/bower_components/angular/angular.min.js:34:13)
at d (http://localhost/sw/selfservice/bower_components/angular/angular.min.js:34:230)
at Object.instantiate (http://localhost/sw/selfservice/bower_components/angular/angular.min.js:34:394)
at http://localhost/sw/selfservice/bower_components/angular/angular.min.js:66:112
at http://localhost/sw/selfservice/bower_components/angular/angular.min.js:53:14 angular.js:9778
(anonymous function) angular.js:9778
(anonymous function) angular.js:7216
h.$apply angular.js:12512
(anonymous function) angular.js:1382
d angular.js:3869
$b.c angular.js:1380
$b angular.js:1394
Wc angular.js:1307
(anonymous function) angular.js:21459
a angular.js:2509
(anonymous function) angular.js:2780
q angular.js:330
c
これらは、現在アプリにあるすべてのファイルです
app.JS
//Initialize angular module include route dependencies
var app = angular.module("selfservice", ['ngRoute']);
app.config(function ($routeProvider) {
$routeProvider
.when('/', {
templateUrl:"partials/login.html",
controller:"login"
});
});
app.factory('getSettings', ['$http', '$q', function($http, $q) {
return function (type) {
var q = $q.defer();
$http.get('models/settings.json').success(function (data) {
q.resolve(function() {
var settings = jQuery.parseJSON(data);
return settings[type];
});
});
return q.promise;
};
}]);
そして、ここで私は自分のコントローラーでこのサービスを使用しています
controller.JS
app.controller("globalControl", ['$scope','getSettings', function ($scope,getSettings) {
var loadSettings = getSettings('global');
loadSettings.then(function(val) {
$scope.settings = val;
});
}]);
app.controller("login", ['$scope', function ($scope) {
return ""
}]);
directives.js
app.directive('watchResize', function(){
return {
restrict: 'M',
link: function(scope, elem, attr) {
scope.spacer = (window.innerWidth < 1025) ? '' : 'large-3';
scope.button = (window.innerWidth < 1025) ? '' : 'large-6';
angular.element(window).on('resize', function(){
scope.$apply(function(){
scope.spacer = (window.innerWidth < 1025) ? '' : 'large-3';
scope.button = (window.innerWidth < 1025) ? '' : 'large-6';
});
});
}
};
});
そして、それが適切であれば、ここにHTMLがあります
<html class="no-js" lang="en" ng-app="selfservice" ng-controller="globalControl">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>{{settings.title}}</title>
<link rel="stylesheet" href="css/app.css" />
<script src="bower_components/modernizr/modernizr.js"></script>
<script src="bower_components/angular/angular.min.js"></script>
<script src="bower_components/angular-route/angular-route.min.js"></script>
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="js/app.js"></script>
<script src="js/controllers.js"></script>
<script src="js/directives.js"></script>
</head>
<body>
<div id="template">
<header id="header">
<img src="{{settings.logo}}" alt="{{settings.logoDescription}}"/>
</header>
<div id="view">
<ng-view></ng-view>
</div>
</div>
<script src="bower_components/foundation/js/foundation.min.js"></script>
<script>
//initialize foundation
$(document).foundation();
</script>
</body>
</html>
誰かが私を正しい方向に向けることができますか?私はドキュメントを追うために最善を尽くしましたが、SOに目を通すと、関連する問題のほとんどはより深く、理解するのがより難しくなります。サービスを作成するのはこれが初めてです。
angularモジュールを適切に初期化する必要があります。グローバルオブジェクトapp
は、サービスを注入するために正しく定義および初期化する必要があります。
以下のサンプルコードを参照してください。
app.js
var app = angular.module('SampleApp',['ngRoute']); //You can inject the dependencies within the square bracket
app.config(['$routeProvider', '$locationProvider', function($routeProvider, $locationProvider) {
$routeProvider
.when('/', {
templateUrl:"partials/login.html",
controller:"login"
});
$locationProvider
.html5Mode(true);
}]);
app.factory('getSettings', ['$http', '$q', function($http, $q) {
return {
//Code edited to create a function as when you require service it returns object by default so you can't return function directly. That's what understand...
getSetting: function (type) {
var q = $q.defer();
$http.get('models/settings.json').success(function (data) {
q.resolve(function() {
var settings = jQuery.parseJSON(data);
return settings[type];
});
});
return q.promise;
}
}
}]);
app.controller("globalControl", ['$scope','getSettings', function ($scope,getSettings) {
//Modified the function call for updated service
var loadSettings = getSettings.getSetting('global');
loadSettings.then(function(val) {
$scope.settings = val;
});
}]);
サンプルHTMLコードは次のようになります。
<!DOCTYPE html>
<html>
<head lang="en">
<title>Sample Application</title>
</head>
<body ng-app="SampleApp" ng-controller="globalControl">
<div>
Your UI elements go here
</div>
<script src="app.js"></script>
</body>
</html>
コントローラはHTMLタグではなく、bodyタグにバインドしていることに注意してください。また、HTMLページの最後にカスタムスクリプトを含めるようにしてください。これは、パフォーマンス上の理由から従う標準的な方法です。
これで基本的なインジェクションの問題が解決することを願っています。
また、ページにサービスファイルを含めるのを忘れる可能性のある一般的な理由の1つ
<script src="myservice.js"></script>
app.factory('getSettings', ['$http','$q' /*here!!!*/,function($http, $q) {
すべての依存関係OR noneを宣言する必要があり、$ qの宣言を忘れました。
編集:
controller.js:ログイン、「」を返さない
このエラーは、誤って$ scopeを自社の工場に注入した場合にも表示されます。
angular.module('m', [])
.factory('util', function ($scope) { // <-- this '$scope' gives 'Unknown provider' when one attempts to inject 'util'
// ...
});
同じ問題を解決しようとして数時間を費やしました。これは私がそれをやった方法です:
app.js:
var myApp = angular.module( 'myApp', ['ngRoute', 'ngResource', 'CustomServices'] );
CustomServicesは、私が作成し、services.jsという別のファイルに配置した新しいモジュールです
_Layout.cshtml:
<script src="~/Scripts/app.js"></script>
<script src="~/Scripts/services/services.js"></script>
services.js:
var app = angular.module('CustomServices', []);
app.factory( 'GetPeopleList', ['$http', '$log','$q', function ( $http, $log, $q )
{
//Your code here
}
app.js
myApp.controller( 'mainController', ['$scope', '$http', '$route', '$routeParams', '$location', 'GetPeopleList', function ( $scope, $http, $route, $routeParams, $location, GetPeopleList )
Services.jsファイルでサービスを新しいモジュールにバインドする必要があり、もちろんメインアプリモジュール(app.js)の作成でその新しいモジュールを使用し、コントローラーでサービスの使用を宣言する必要があります使用したいです。
私はこの問題を抱えていましたが、ui.routerとhtmlテンプレートの両方にコントローラーを含めていました
.config(['$stateProvider',
function($stateProvider) {
$stateProvider.state('dashboard', {
url: '/dashboard',
templateUrl: 'dashboard/views/index.html',
controller: 'DashboardController'
});
}
]);
そして
<section data-ng-controller="DashboardController">
コントローラーと、コントローラーで呼び出されるコントローラーと機能が存在するモジュールの両方を「インクルード」してください。
module(theModule);
@ user2310334私はこれを試してみました、非常に基本的な例:
HTMLファイル
<!DOCTYPE html>
<html lang="en" ng-app="app">
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.6/angular.min.js" type="text/javascript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.6/angular-route.min.js" type="text/javascript"></script>
<script src="./app.js" type="text/javascript"></script>
</head>
<body>
<div ng-controller="MailDetailCtrl">
</div>
</body>
</html>
JavaScriptファイル:
var myApp= angular.module('app', ['ngRoute']);
myApp.factory('mailService' , function () {
return {
getData : function(){
var employees = [{name: 'John Doe', id: '1'},
{name: 'Mary Homes', id: '2'},
{name: 'Chris Karl', id: '3'}
];
return employees;
}
};
});
myApp.controller('MailDetailCtrl',['$scope', 'mailService', function($scope, mailService) {
alert(mailService.getData()[0].name);
}]);
そしてそれは動作します。それを試してみてください。
私の場合、アプリに新しいサービス(ファイル)を追加しました。その新しいサービスは既存のコントローラーに注入されます。その既存のコントローラーへの新しいサービス依存性注入を見逃すことはなく、アプリモジュールを1か所しか宣言しませんでした。 Webサービスとブラウザーキャッシュを再実行すると、同じ例外がスローされますリセットされません新しいサービスファイルコードで。ブラウザーを更新してブラウザーキャッシュ用の新しいサービスファイルを取得するだけで、問題はなくなりました。
必ずコントローラーをロードしてくださいoutsideapp.config
。次のコードはこのエラーを引き起こす可能性があります。
app.config(["$stateProvider", "$urlRouterProvider", function ($stateProvider, $urlRouterProvider) {
var AuthCtrl = require('components/auth/AuthCtrl'); //NOTICE HERE
$stateProvider.state('login',{
url: "/users/login",
templateUrl: require("components/auth/login.tpl.html"),
controller: AuthCtrl // ERROR
})
}))
このエラーを修正するには、AuthCtrlをoutsideapp.config
に移動する必要があります。
var AuthCtrl = require('components/auth/AuthCtrl'); //NOTICE HERE
app.config(["$stateProvider", "$urlRouterProvider", function ($stateProvider, $urlRouterProvider) {
$stateProvider.state('login',{
url: "/users/login",
templateUrl: require("components/auth/login.tpl.html"),
controller: AuthCtrl // WORK
});
}))