我有这个方法
angular.module('RDash')
.controller("SipsCtrl", ['$scope','$http', function($scope, $http){
'use strict';
$http({
method: 'GET',
url: 'http://192.168.2.35/SIPSWS/SIPSWS.asmx/HelloWorld'
}).then(
//OK
function (response) {
$scope.btnCUPS = "Exito",
},
//KO
function (response) {
$scope.btnCUPS = "Error",
});
}]);
我的服务器状态为200,但是你没有看到响应。
我应该接收下一个结构的XML数据响应
<string xmlns="http://tempuri.org/">Hola a todos</string>
如何在我的视图中添加de响应?
答案 0 :(得分:1)
查看您是否真的通过以下方式获取数据:console.log(response);
如果你是,那么通常会在控制器内部响应数据:
$scope.data = response.data;
在视图中:
<div>{{data}}</div>