我试图在一些Javascript中访问一个值,以便在AngularJS服务中使用。我已成功地将值存储在变量中但我在将该变量放入AngularJS服务时遇到问题。这是我的代码:
JS功能:
function onNotification(e) {
$("#app-status-ul").append('<li>EVENT -> RECEIVED:' + e.event + '</li>');
switch( e.event )
{
case 'registered':
if ( e.regid.length > 0 )
{
$("#app-status-ul").append('<li>REGISTERED -> REGID:' + e.regid + "</li>");
// Your GCM push server needs to know the regID before it can push to this device
// here is where you might want to send it the regID for later use.
var regid = e.regid
console.log(regid);
}
break;
变量regid是我想要访问的内容。
AngularJS服务:
App.service('regID', function()
{
return{}
});
角度函数:
App.controller('MainCtrl', function($scope, $state, regID, $window){
console.log('MainCtrl');
var pushNotification;
document.addEventListener("deviceready", onDeviceReady, false);
$scope.regID = regID;
$scope.regID.regID = $window.regid;
console.log($scope.regID);
function onDeviceReady()
{
pushNotification = window.plugins.pushNotification;
$("#app-status-ul").append('<li>registering ' + device.platform + '</li>');
if ( device.platform == 'android' || device.platform == 'Android'){
pushNotification.register(
successHandler,
errorHandler,
{
"senderID":"460885134680",
"ecb":"onNotification",
});
} else {
pushNotification.register(
tokenHandler,
errorHandler,
{
"badge":"true",
"sound":"true",
"alert":"true",
"ecb":"onNotificationAPN"
});
}
}
function successHandler (result, $scope, regID, $window)
{
alert('result = ' + result);
}
function errorHandler (error)
{
alert('error = ' + error);
}
});
每次运行此$ window.regid都会返回undefined。关于为什么的任何想法?
答案 0 :(得分:0)
所以你还没有将它分配给全局变量。您已将其分配给本地函数范围变量。
要将其分配给全局变量,请使用window.regID而不是var regID。
您的regID服务不执行任何操作。它应该返回$ window.regID。
总而言之,这不是正确的方法。正确的方法是返回承诺的服务。该服务还会侦听本机javascript或jqlite事件,并在处理事件时解析承诺。