2

我需要使用在 angularJS 控制器脚本内的 JQuery 脚本中定义的数组。我不明白 $rootScope 是如何融入整个事情的。

这可能吗,有什么建议吗?

$(document).ready(function(){ 
    $.get("KIP.xml",{},function(xml){

        // I need this accessible in controller.js
        FinalP = [ ];

    }
})

..

var app = angular.module("KIdash", []);

app.controller("controller", function($scope, $rootScope, $http) {

    console.log('initilaized!');

    $scope.PlayerList = **FinalP**
});
4

1 回答 1

1

$window您可以使用对象https://docs.angularjs.org/api/ng/service/$window传递变量

在jQuery中window.FinalP = []

在角$scope.SomeVar = $window.FinalP

于 2016-03-30T21:03:16.217 回答