Я делаю вызов покоя от ионного приложения, и оно работает на устройстве Android, но не на устройстве IOS.
Вот как я звоню на отдых из моей ионической службы.
import { Http } from '@angular/http';
import { Injectable } from '@angular/core';
@Injectable()
export class loginService {
constructor(private http : Http){ }
getAllUsers(authData){
console.log(authData);
return this.http.post('http://Some IP add:8080/api/customerr/getUser', authData);
}
}
Вот так я получаю данные в моем файле login.ts
this.loginservice.getAllUsers(this.loginForm.value).subscribe((response) => {
this.loginResponse = response.json()
} (err)=>{
alert(err)
});