我的代码生成了很多Ajax请求。为什么?

时间:2017-05-02 21:19:09

标签: javascript angularjs ajax

我有这段代码,但它产生了很多Ajax请求:

$scope.form = function (type, id) {
  params = {'id': id};

  if (type == 'isExperience') {
    var route = "seeqle_user_profile_experience_form";
  }

  $http.get(Routing.generate(route, params,true)).success(function (template) {
    $scope.openModal(template);
  });
}

在我的Chrome开发工具的网络标签中,我看到了这个结果:

enter image description here

谢谢Stack Overflow

0 个答案:

没有答案