在我的应用程序中,当我在不同的浏览器中打开主页或任何用户执行的不同计算机请求时,都会在每个用户的窗口中反映出来。
表示如果任何一个用户单击了不同的选项卡,则您将被重定向到另一个页面。
我正在从控制器调用我的函数,并且我还使用.then()
解决了时间延迟问题。
不知道我哪里出问题了。
this.getStatisticsForNDays = function(isSwitchEnabled, id, noOfDays) {
var requestJsonUrl = null;
requestJsonUrl = 'http://localhost:8080/nimservice/api/v1/metric/simstat?pastDays='+noOfDays+'&deviceId='+id;
var request = $http({
method: 'GET',
url : requestJsonUrl
}).then(function(response){
console.log('response data',response);
return response.data;
},function(error){
});
return request;
};
请帮助...........