AngularJS控制器功能响应

时间:2018-09-17 20:50:45

标签: angularjs model-view-controller scope mean-stack

下面的我的控制器通过服务返回json,如下所示:

.controller('googleFormsCtrl', function ($scope, $http, $window, Userr,$timeout,$location) {
        // SEND THE HTTP REQUEST
        var url;
        var externalWindow;
        // MAKE API REQUEST for Authorization
        $http.get('/api/googleAuth').then(function (response) {
            url = response.data;
        });

        this.googleAuthentication = function () {
            externalWindow = $window.open(url, "Please Sign in with Google", "width:350px,height:350px");
        };
        // Close Authorization and set credentials
        window.onmessage = function (info) {
            externalWindow.close();
            // Get the URL
            var urlCode = info.data;

            // Get pure code of user
            var idx = urlCode.lastIndexOf("code=");
            var code = urlCode.substring(idx + 5).replace("#", "");

            // GET ALL FORMS
            Userr.getCredentials(code).then(function (res) {
                $scope.forms = JSON.stringify(res.data);

            });
        };

    }) 

如上所示,我在请求的回调中获取了所有表单,并且需要使用它们才能将其放入另一个页面的选项菜单中,如下所示:

<div>
    <h2> Google Forms </h2>
</div>
<br>
<br>
<br>
<div id="selectForm">
    <div class="form-group">
        <br>
        <!--The Forms should be displayed below dynamically-->
        <h5>Select Google Form</h5>
        <select class = "form-control" ng-model="model.id"
                ng-options="form.id as form.name for form in forms" >
        </select>
        {{model.id}}
    </div>
    <button class="btn btn-default" type="submit">OK</button>
</div>

这就是为什么我必须在功能范围之外访问它们。我来自res.data的数据是这样的:

[{
            "id": "1o3FUAJAPsS2m93_ECkVtLcYbMaaWHk6UGHIFG-6lpyA",
            "name": "Normal Form"
        }, {
            "id": "1QB5MHWtXytLUqGHUH1Ac-V9fS7hHlCqSWXjq2iFz1Zk",
            "name": "Parti Davetiyesi"
        }];

如何将这些数据导出到功能范围之外?希望获得任何帮助或提示。谢谢。

1 个答案:

答案 0 :(得分:-1)

每当您需要使某项全局可用或至少对多个控制器可用时,都需要使用工厂或服务。

服务和工厂是单例的,这意味着一旦实例化它们,它们将在应用程序的生存期内保留在内存中。

(实际上,在服务中实现某种缓存是一个好主意,这样就不会进行不必要的调用。)

因此,$http请求的结果可以分配给服务变量:

        // GET ALL FORMS
        Userr.getCredentials(code).then(function (res) {
            $scope.forms = JSON.stringify(res.data);
            // to make this data availbale everywhere,
            // simply add the result to the service itself
            Userr.forms = res.data;
        });

现在,在每个注入Userr服务的控制器中,您都可以访问以下数据:

// in another controller
$scope.forms = Userr.forms;