您好,我需要使用REST服務來顯示網站(200,404等)的響應。
我創建了一個局部的代碼,但我不知道如何顯示結果
這是JS
angular.module('demo', [])
.controller('Hello', function($scope, $http) {
$http ({
method: 'GET',
url: 'http:/www.google.com'
}).
then(function(response) {
$scope.greeting = response.data;
});
})
,這是HTML
<body>
<div ng-controller="Hello">
<p>Result = {{greeting.content}}</p>
</div>
</body>
</html>
感謝您的幫助。
檢查文檔https://docs.angularjs.org/tutorial – mcranston18