HTTP调用在带有角度HTTP的离子ios中工作,HTTPS调用显示了这样的问题
无法加载资源:此服务器的证书无效。 您可能正在连接到假装为 “ xxxxxxxxxx.com”可能会将您的机密信息放在 风险
apiService.ts文件
import { HttpClient, HttpResponse } from '@angular/common/http';
constructor(private httpIonic: HTTP) {}
getAllStates(){
return this.httpIonic.get("https://example.com/states")
}
我正在从另一个ts页面打电话
this.apiService.getAllStates().subscribe((data) => {
this.allStates(data);
});