我写过关于这个功能的文章。但是函数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) {});
}
});