我正在使用angular-phonegap-seed编写移动应用程序,并且想知道使用$ http是否存在任何已知问题。
只需按一下按钮即可调用我的控制器代码。
$http.get('http://192.168.1.2:8000/request_token').success(function(data, status, headers, config){
$scope.token = 'sucess: ' + data + ' ' + status + ' ' + headers + ' ' + JSON.stringify(config);
}).error(function(data, status, headers, config){
$scope.token = 'error: ' + data + ' ' + status + ' ' + headers + ' ' + JSON.stringify(config);
});
目前,服务器上的request_token
只是一个带有虚拟令牌的文件。
服务器确认在控制台中获取请求并以200响应。 Android上的phonegap应用程序会响应:
error: undefined undefined undefined {"transformrequest": [NULL], "transformresponse": [NULL], "method": "GET", "url": "http://server-ip:8000/request_token", "headers": {"accept": "application/json, text/plain, */*"}}
我可以在phonegap中使用常规$ http.get()方法,还是必须使用phonegap api?