我有一个Angular应用程序,通过工厂内的单个函数管理数据库访问。工厂声明是:
var MayApp = angular.module('MayApp');
MayApp.factory("DB_Services", [ "$http" , function($http) {
var This_Factory = {} ;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
This_Factory.Get_Data_from_DB_Internal = function (p_Request) {
var http = new XMLHttpRequest() ;
var url = MyURL ;
var params = "data=" + p_Request ;
http.open("POST", url, true);
//Send the proper header information along with the request
http.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
http.onreadystatechange = function() {
if(http.readyState == 4 && http.status == 200) {
return http.responseText ;
}
}
http.send(params);
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
This_Factory.Get_Data_from_DB = function Get_Data_from_DB($scope, DB_Services) {
var myDataPromise = DB_Services.Get_Data_from_DB_Internal("Dummy");
myDataPromise.then(function(result) {
return result ;
});
}
return This_Factory ;
}]);
使用此服务的控制器如下所示:
MayApp.controller('MyController' , ['$scope' , 'DB_Services' , function( $scope , DB_Services) {
$scope.Search_Lookups = function () {
var l_Lookup_Type = document.getElementById("Lookup_Seed").value ;
var l_Data = MyApp.DB_Services.Get_Data_from_DB(l_Lookup_Type);
console.log ("Received response: " + l_Data) ;
return l_Data ;
}
} ]) ;
单击按钮时调用函数Search_Lookups
。生成的错误消息为:TypeError: Cannot read property 'Get_Data_from_DB' of undefined
。
我有issues这个工厂,并通过在index.html文件中更改其包含位置(即<script src="Private_Libs/Factories/DB_Services.js"></script>
)来解决。现在,加载页面时没有出现任何错误,但控制器仍然看不到Get_Data_from_DB
。
有什么线索?
感谢。
答案 0 :(得分:0)
您已将工厂注入控制器,名称为DB_Services
。当您想要调用它时,只需使用DB_Services
,而不是MayApp.DB_Services
,工厂不是您应用的方法,它是您在注入时定义的控制器中的独立变量。< / p>
另外,您处理请求的方式,我认为它不会起作用,您应该从工厂发回承诺,而不是在您的承诺解决后检索到的价值,因为您的控制器会分配{ {1}}在您调用工厂函数后立即取消定义,并且不会等待工厂的承诺解决。