离子本机HTTP获取请求在iOS设备上失败(在Android上运行)

时间:2018-06-26 11:31:27

标签: ios cordova http ionic-framework

我在ios上使用离子应用程序时遇到一些问题。每当我尝试向ios上的服务器发出get请求时,它都会失败,但在android上可以正常工作。

获取的代码如下:

this.http.get(url, {}, {})
  .then(data => {
     // rest of the code
  })
  .catch(error => {

    // Alert for when the url failed
    let alert = this.alertCtrl.create({
      title: "Failed to connect",
      buttons: ['Dismiss']
    });
    alert.present();

  });

url是一个类似于https://website.com/script.php?EmployeeID=1

的字符串

当我在线搜索这样的问题时,我在我的config.xml文件中添加了允许导航: <allow-navigation href="*" />

我遵循了https://ionicframework.com/docs/native/http/中的所有说明,但仍然无法使用。任何人有任何想法吗?

非常感谢您

0 个答案:

没有答案