我是angular的新手,我正努力将我在控制器中检索到的变量通过http资源传递到我的指令中。首先,我有一个问题,我的ngResource调用是异步的,然后我有一个问题,我的资源调用是链接的。
这是我的HTML
<html ng-app="routingRulesApp">
<body ng-controller="RulesDisplayCtrl">
<my-customer info="$activeRuleSetId"></my-customer>
</body>
</html>
这是我的Javascript
var routingRulesApp = angular.module('routingRulesApp', [
'routingRulesControllers',
'routingRulesServices',
'routingRulesDirectives'
]);
var routingRulesControllers = angular.module('routingRulesControllers', []);
routingRulesControllers.controller('RulesDisplayCtrl', ['$scope', 'RuleSets', '$q',
function($scope, RuleSets, $q) {
var fr = null;
var rpromise = $q.defer();
$scope.activeRuleSetId = RuleSets.active({ruleId: 1}, function(activeRuleSetId) {
var ruleSetId = activeRuleSetId[0];
var ruleSet = RuleSets.query({ruleSetId: ruleSetId}, function(ruleSet) {
console.log(ruleSet);
fr = ruleSet;
rpromise.resolve(fr);
}, function(response) {
//404 or bad
if(response.status === 404) {
console.log("HTTP Error", response.status);
}
});
}, function(response) {
//404 or bad
if(response.status === 404) {
console.log("HTTP Error", response.status);
}
});
$scope.formattedResults = rpromise.promise;
}
]);
var routingRulesDirectives = angular.module('routingRulesDirectives', []);
routingRulesDirectives.directive('myCustomer', [
function() {
return {
restrict: 'E',
replace: true,
scope: {
formattedResults: '=info'
},
templateUrl: 'templates/currency-group-rule.html',
controller: function($scope) {
console.log($scope.formattedResults);
debugger;
}
};
}
]);
var routingRulesServices = angular.module('routingRulesServices', ['ngResource']);
routingRulesServices.factory('RuleSets', ['$resource',
function($resource){
return $resource('data/routing-ruleset-:ruleSetId.json', {}, {
query: {method:'GET', isArray:true},
active: {method:'GET', isArray: false, url: 'data/rulesets-activeRuleSetId.json', responseType:"text"}
});
}]);
我试图在我的指令控制器中获取我的$ scope.formattedResults变量,以便我可以构建自定义表/网格解决方案,但我不确定如何实现这一点。你可以看到我很迷茫。我试图使用延迟对象,并希望它将绑定到变量。
答案 0 :(得分:1)
嗯,这不是代码答案,但我需要引导你一些角度方面。
实现目标:
我可以快速想到两种方式。
现在一些关键点,你不必忘记你的角度精神。
可能你知道他们中的大多数,并且肯定谷歌搜索会给你很多S.O.问题的内容可以解释上述内容,可能会更好。也许有人可以给你一些代码相关的答案。
祝你好运。