0
我有一個jsonp調用服務器,返回一個包含兩個對象的對象。加載jsonp到多個anglarjs控制器
目前我使用jQuery進行jsonp調用,因爲我剛剛開始學習angularjs,我不知道它是如何完成的。
我想使用navController
data.filters
和data.results
在contentController
你會BEB與angularjs到aceive這個正確的方法是什麼?
(function($, angular) {
$(function() {
$.ajax({
jsonp: "JSONPCallback",
url: 'myUrl',
dataType: 'jsonp',
success: function(data) {
//data = {"filters":{...},"results":{...}}
}
});
});
var app = angular.module('app', []);
var controllers = {};
controllers.navController = function($scope) {
$scope.filters = [{}];
};
controllers.contentController = function($scope) {
$scope.results = [{}];
};
app.controller(controllers);
})(jQuery, angular);