简单如标题所示:
我在IONIC 1中进行了开发,它正确执行“$ http.get”,适用于Android,但不适用于IO,它只是不会抛出任何错误,只是不执行“$ http.get”。
代码的部分是:
static displayName = 'CustomTestUI'
对于Android,这种执行效果很好,但不适用于IO,不会抛出任何错误,它似乎不会直接运行。
在config.xml中,除了其他语句之外,我还有:
$http.get("http://www.paginaquedireccionafuncionabien")
.success(function (response) {
$scope.libroPrimero = response.records;
}, function(err) {
console.error('ERR', err);
});
你知道如何让IO取“$ http.get”吗?
谢谢