在页面加载角JS的单个控制器中进行两次https调用,可以按照以下步骤进行:
<html ng-app="myApp">
<body ng-controller="myController">
</body>
</html>
var app = angular.module('myApp', []);
app.controller('myController', function($http) {
// 在控制器中进行https调用
$http.get('https://api.example.com/data1')
.then(function(response) {
// 处理第一次https调用的响应数据
});
$http.get('https://api.example.com/data2')
.then(function(response) {
// 处理第二次https调用的响应数据
});
});
在第一次https调用中,我们发送一个GET请求到'https://api.example.com/data1',并在.then方法中处理响应数据。
在第二次https调用中,我们发送一个GET请求到'https://api.example.com/data2',并在.then方法中处理响应数据。
领取专属 10元无门槛券
手把手带您无忧上云