AngularJS中的JS全局变量返回undefined



我正在尝试访问一些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时,它都会以未定义的形式返回。有什么原因吗?

所以您没有将其分配给全局变量。您已将其分配给一个局部函数作用域变量。

要将其分配给全局变量,请使用window.regID而不是var regID。

您的regID服务不起任何作用。它应该返回$window.regID.

尽管如此,这不是正确的做法。正确的方法是提供一个返回承诺的服务。该服务还监听本地javascript或jqlite事件,并在处理事件时解析promise。

相关内容

  • 没有找到相关文章

最新更新