简体   繁体   English

重新格式化Angular样式指南1.5

[英]Reformatting for Angular style guide 1.5

I am using the Angular spyboost utility wrapper. 我正在使用Angular spyboost实用程序包装器。 I am trying to reformat it for this angular 1 style guide . 我正在尝试重新格式化此有角度的1样式指南 I'm having a hard time with parts of it. 我很难部分解决这个问题。 I think I have most of it correct but the angular.forEach function is throwing me off. 我想我大部分都正确,但是angular.forEach函数让我失望了。 I am and am getting an error `Expected '{' and instead saw 'result'. 我正在得到一个错误'Expected'{',而是看到了'result'。 Could someone help me please ? 有人可以帮我吗?

 angular
    .module('myMod')
    .factory('MyService');
MyService.$inject = ['$rootScope', 'atmosphereService', 'atmosphere'];

function MyService ($rootScope, atmosphere) {
    return {
        subscribe: subscribe,
        getMessage: getMessage
    };

    function subscribe (r) {
        var responseParameterDelegateFunctions = ['onOpen', 'onClientTimeout', 'onReopen', 'onMessage', 'onClose', 'onError'];
        var delegateFunctions = responseParameterDelegateFunctions;
        var result = {};

        delegateFunctions.push('onTransportFailure');
        delegateFunctions.push('onReconnect');

        angular.forEach(r, function (value, property) {
            if (typeof value === 'function' && delegateFunctions.indexOf(property) >= 0) {
                if (responseParameterDelegateFunctions.indexOf(property) >= 0)
                    **result[property] = function (response) {**
                        $rootScope.$apply(function () {
                            r[property](response);
                        });
                    };
                else if (property === 'onTransportFailure')
                    result.onTransportFailure = function (errorMsg, request) {
                        $rootScope.$apply(function () {
                            r.onTransportFailure(errorMsg, request);
                        });
                    };
                else if (property === 'onReconnect')
                    result.onReconnect = function (request, response) {
                        $rootScope.$apply(function () {
                            r.onReconnect(request, response);
                        });
                    };
            } else
                result[property] = r[property];
        });

        function getMessage () {
            var vm = this;
            var request = {
                url: '/chat',
                contentType: 'application/json',
                transport: 'websocket',
                reconnectInterval: 5000,
                enableXDR: true,
                timeout: 60000
            };

            request.onMessage(response); {
                vm.$apply (function () {
                    vm.model.message = atmosphere.util.parseJSON(response.responseBody);
                });
            }
        }
        return atmosphere.subscribe(result);
    }

}

})(window.angular);
if (responseParameterDelegateFunctions.indexOf(property) >= 0)

is missing its curly braces? 缺少花括号吗?

if (responseParameterDelegateFunctions.indexOf(property) >= 0) {
    result[property] = function (response) {
           $rootScope.$apply(function () {
                    r[property](response);
                });
           };
}
else if (property === 'onTransportFailure') {
     result.onTransportFailure = function (errorMsg, request) {
         $rootScope.$apply(function () {
             r.onTransportFailure(errorMsg, request);
          });
      };
}
else if (property === 'onReconnect') {
     result.onReconnect = function (request, response) {
         $rootScope.$apply(function () {
              r.onReconnect(request, response);
         });
     };
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM