反应本机Android模拟器证书问题

时间:2019-02-12 21:58:42

标签: android reactjs react-native certificate emulation

我正在研究一个简单的React本机应用程序,该应用程序查询API的数据并将其显示在屏幕上。该程序似乎可以在我的物理电话上运行,但是在发出HTTP请求时在模拟器上出错。我怀疑这是证书问题,因为存在错误。

这是对REST API的完整https调用。

formData() {
  for (const id of Object.keys(this.cols)) {
    let p= cols[id];
    switch (p.name) {
      case 'a':
      this.temp.name= this.addValue(m, p);
        break;
      case 'b':
        let idx = 1;
        let surname= this.getValue(idx);
        break;
    }
  }
  this.data.push(this.temp);
});

0 个答案:

没有答案