如何使用角度js将页面加载到另一个页面?

时间:2018-01-03 09:19:02

标签: angularjs

我写过关于这个功能的文章。但是函数successCallback不起作用! 它清空html,但无法加载响应。 实际上,页面已加载,但html($compile(response)($scope))不起作用 如何在页面中加载响应?

这是我的代码:

var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope, $http, $compile) {
  $scope.myFunction = function() {
    $http({
      method: 'post',
      url: '/test-js.bc',
      data: {
        EndCityID: $(".EndCityID").val()
      }
    }).then(function successCallback(response) {
        $(".airlinename").empty().html($compile(response)($scope));
      },
      function errorCallback(response) {});
  }
});

0 个答案:

没有答案