weixin_33736048 2014-10-13 11:59 采纳率: 0%
浏览 49

$ .ajax在angularjs中不起作用

I am trying to log my client-sided error on on the server side in my angular app. To do this, I am using stacktrace.js and I am using the following factory:

myApp.factory(
"exceptionLoggingService",
["$log","$window", "traceService",
function($log, $window, traceService){
    function error(exception, cause){

        $log.error.apply($log, arguments);

        try{
            var errorMessage = exception.toString();

            var stackTrace = traceService.print({e: exception});

            $.ajax({
                type: "POST",
                url: "/logger", 
                contentType: "application/json",
                data: angular.toJson({
                    url: $window.location.href,
                    message: errorMessage,
                    type: "exception",
                    stackTrace: stackTrace,
                    cause: ( cause || "")
                })
            });
        } catch (loggingError){
            $log.warn("Error server-side logging failed");
            $log.log(loggingError);
        }
    }
    return(error);
}]

);

My problem here, is that I am not using jQuery in my app and I'd like to avoid it as much as possible. as a result when running this code, I get the expected error:

ReferenceError: $ is not defined

How can I make an ajax request without using the $http service here (to avoir circular references in the case)?

  • 写回答

1条回答 默认 最新

  • ~Onlooker 2014-10-13 12:13
    关注

    Please update $.ajax to $http call see code below

    myApp.factory(
        "exceptionLoggingService", ["$log", "$window", "$http", "traceService",
          function($log, $window, $http, traceService) {
            function error(exception, cause) {
    
              $log.error.apply($log, arguments);
    
              try {
                var errorMessage = exception.toString();
    
                var stackTrace = traceService.print({
                  e: exception
                });
                var data = angular.toJson({
                  url: $window.location.href,
                  message: errorMessage,
                  type: "exception",
                  stackTrace: stackTrace,
                  cause: (cause || "")
                })
    
                $http.post("/logger", data).then(
                  function(response) {
                    alert("post sucess")
                  },
                  function(response) {
                    alert("post error")
                  },
                )
    
              } catch (loggingError) {
                $log.warn("Error server-side logging failed");
                $log.log(loggingError);
              }
            }
            return (error);
          }
        ]

    </div>
    
    评论

报告相同问题?

悬赏问题

  • ¥15 乘性高斯噪声在深度学习网络中的应用
  • ¥15 运筹学排序问题中的在线排序
  • ¥15 关于docker部署flink集成hadoop的yarn,请教个问题 flink启动yarn-session.sh连不上hadoop,这个整了好几天一直不行,求帮忙看一下怎么解决
  • ¥30 求一段fortran代码用IVF编译运行的结果
  • ¥15 深度学习根据CNN网络模型,搭建BP模型并训练MNIST数据集
  • ¥15 C++ 头文件/宏冲突问题解决
  • ¥15 用comsol模拟大气湍流通过底部加热(温度不同)的腔体
  • ¥50 安卓adb backup备份子用户应用数据失败
  • ¥20 有人能用聚类分析帮我分析一下文本内容嘛
  • ¥30 python代码,帮调试,帮帮忙吧