我有以下控制器定义:
angular.module('myapp', [ 'ngRoute' ]).config(function($routeProvider,
$httpProvider) {
[...]
})
.controller('edit', function($scope, $http, $routeParams) {
$scope.projectid = $routeParams.id;
$scope.viewer = "undefined";
$scope.mode = 'nothing';
var projectid = $routeParams.id;
})
.directive('initCesium', function(){
return {
restrict: 'AEC',
link: function(scope, element, attrs) {
if (typeof Cesium !== "undefined") {
startup(Cesium, scope);
} else if (typeof require === "function") {
require(["Cesium", "scope"], startup);
}
}
}
});
我需要在函数startup
中发送Web服务请求。因此,我需要在{2}中将$http
传递给startup
:
startup(Cesium, scope);
require(["Cesium", "scope"], startup);
我该怎么做?
答案 0 :(得分:1)
好吧,简单明了。
以下是我创建的工作代码,说明了如何在指令的链接功能中访问 $ http 对象。
在您的情况下,您可以应用以下逻辑来传递对的引用 您打算访问$ http对象的函数。
查看Js小提琴link
使用Javascript:
var app = angular.module('components', [])
app.controller("MyCtrl", ["$scope","$http", function($scope, $http){
$scope.ctrl = "Works!"
$scope.http = $http;
}]);
app.directive('helloWorld', function () {
return {
restrict: 'EC',
link:function(scope, elemnt, attrs){
console.log("Directive");
scope.http.post("/echo/json/", "json=%7B%22name%22%3A%22nirus%22%7D")
.success(function(data, status) {
scope.name = data.name;
console.log(data.name)
}).error(function (status) {
console.log("Error occured")
});
},
template: '<span>Hello {{name}} : it {{ctrl}}</span>'
}
})
angular.module('HelloApp', ['components'])
HTML:
<!doctype html>
<html ng-app="HelloApp">
<body ng-controller="MyCtrl">
<hello-world></hello-world>
</body>
</html>
在我的链接功能中,我可以访问http对象。
希望这对您有所帮助!