我正在研究一个简单的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);
});