Ionic 3响应状态:0表示URL:null

时间:2018-03-08 09:46:42

标签: ios ionic-framework ionic3 wkwebview wkwebviewconfiguration

我有一个Ionic 3应用程序。我最近添加了iOS平台。

当我在iOS(模拟器和设备)上运行时,所有具有标头的服务器请求都会失败并显示错误"响应状态:0表示URL:null" 。在Android上,这些请求工作正常。

如果我执行请求不带标题,我会收到服务器的预期响应。

我知道问题出在 WKWebView CORS 上。服务器正确配置了CORS。我使用 @ angular / http 模块执行请求。

让我们看一些代码。

这是我向服务器发出请求的提供者:

import { Injectable } from '@angular/core';
import { Content } from 'ionic-angular';
import { Http, Headers, RequestOptions, URLSearchParams } from '@angular/http';
import { HTTP } from '@ionic-native/http';
import { Observable } from 'rxjs/Observable';
import 'rxjs/add/operator/map';
import { Globalization } from '@ionic-native/globalization';

import { Globals } from '../providers/globals';

...

/// Here we have one example Request (it's inside a method)

/// Here I create the URL for the request
let url = this.server_url + this.server_functions.doSearch;

/// Now I create the Headers for the Request
let headers = new Headers();
/// As You can see, I have tried to pass diferent headers to server
    // headers.append("Access-Control-Allow-Origin","*");
    // headers.append("Origin", "https://localhost:8080");
    // headers.append("Access-Control-Allow-Methods","POST, GET, OPTIONS, PUT");
    // headers.append("Accept","application/json");
    // headers.append("Content-Type","application/json; charset=utf-8");

/// If the user is logged in I have to send this headers to server
if ( !this.globals.guestMode ) {
    headers.append("TokenAuth", this.globals.getLogRegData()["TokenAuth"]);
    headers.append("IdAuth", this.globals.getLogRegData()["IdAuth"]);
}

/// And here we start the GET Request
this.http.get( url, { headers: headers } ).map(res => res.json()).subscribe(
    data => {
        // console.log( JSON.stringify(data) );
        callback( data );
    },
    err => {
        console.log("ELOL: "+err);
    }
);

另一方面,我决定尝试@ ionic-native / http模块(你可以在导入中看到)以避免WKWebView和CORS问题,但是当我用它做请求时,我得到了这个错误:

WARN: Native: tried calling HTTP.get, but the HTTP plugin is not installed.
WARN: Install the HTTP plugin: 'ionic cordova plugin add cordova-plugin-advanced-http'

这是我使用本机插件执行请求的方式:

this.httpnative.get(url, {}, {})
    .then(data => {

        console.log(data.status);
        console.log(data.data); // data received by server
        console.log(data.headers);

    })
    .catch(error => {

        console.log(error.status);
        console.log(error.error); // error message as string
        console.log(error.headers);

    });

这是我的app.module.ts片段:

import { HttpModule } from '@angular/http';
import { HTTP } from '@ionic-native/http';
...
@NgModule({
...
 imports: [
...
    HttpModule,
    HTTP,
...

  ],
})

我希望有人能够对我有所了解,因为我在离子的道路上迷失了。

谢谢。

2 个答案:

答案 0 :(得分:2)

为避免iOS中特别出现 CORS 问题,您必须使用@ ionic-native / http插件,它实际上是用于API调用的高级HTTP插件。

按照以下步骤使用此插件

第1步:添加Http原生插件

$ ionic cordova plugin add cordova-plugin-advanced-http
$ npm install --save @ionic-native/http

安装链接:HTTP

第2步:在您想要加密API的文件中导入HTTP本机插件。

import { HTTP, HTTPResponse } from '@ionic-native/http';

第3步:如何在API调用中使用此插件?

constructor(public httpPlugin: HTTP) {

  }

//Set header like this
this.httpPlugin.setHeader("content-type", "application/json");

//Call API 
this.httpPlugin.get(this.url, {}, {}).then((response) => {
    //Got your server response
}).catch(error => {
    //Got error 
});

希望这会对你有所帮助。

答案 1 :(得分:2)

我在android中有相同的问题,rest api在android模拟器或设备中不起作用,并给出错误:Url的响应为0:null。 最后我得到解决方案,那就是cordova平台的android版本问题,如果cordova Android的版本是6.3,那么它可以正常工作,但是cordova Android的版本是7.0或7.1.1,那么它对我不起作用。

因此,我认为在ios中,您应该检查ios平台版本,然后重试。 您可以使用cli命令检查ios或android版本。 离子信息

还要检查您的所有cordova插件是否已安装。如果有人失踪,请手动安装并再次检查。 您可以使用cli命令检查您的cordova插件。 cordova插件-ls

我认为这对您有帮助。

谢谢