如何开始使用$ q?

时间:2015-06-15 10:53:32

标签: angularjs q

我试图在我的控制器中注入$ q,如下所示:

app.controller('NodeCtrl', ['Tree', function(Tree, $scope, $element, $q) {

但是,$q未定义,我该如何开始使用它?我正在使用Angular 1.4

1 个答案:

答案 0 :(得分:2)

您需要将其注入并将其添加到参数列表中:

app.controller('NodeCtrl', ['Tree', '$scope', '$element', '$q', 
               function(Tree, $scope, $element, $q) {