Я использую плагин cordova "advanced-http", я уже установил его на свой проект ioni c, и он позволил мне импортировать его и разрабатывать без проблем. Но когда я запускаю c мое приложение на android, оно показывает следующее сообщение:
Native: tried calling HTTP.sendRequest, but the HTTP plugin is not installed. vendor-es5.js:143000
Install the HTTP plugin: 'ionic cordova plugin add cordova-plugin-advanced-http'
Я уже установил этот плагин с помощью следующих команд:
ionic cordova plugin add cordova-plugin-advanced-http
npm install @ionic-native/http
Я пытаюсь собрать в android 4.4.4, и это результат команды sudo ionic info
:
Ionic:
Ionic CLI : 6.1.0 (/usr/local/lib/node_modules/@ionic/cli)
Ionic Framework : @ionic/angular 5.0.0
@angular-devkit/build-angular : 0.803.25
@angular-devkit/schematics : 8.3.25
@angular/cli : 8.3.25
@ionic/angular-toolkit : 2.1.2
Cordova:
Cordova CLI : 9.0.0 (cordova-lib@9.0.1)
Cordova Platforms : android 8.1.0
Cordova Plugins : cordova-plugin-ionic-keyboard 2.2.0, cordova-plugin-ionic-webview 4.1.3, (and 9 other plugins)
Utility:
cordova-res : not installed
native-run : 0.3.0
System:
Android SDK Tools : 26.1.1 (/root/Android/Sdk/)
NodeJS : v13.8.0 (/usr/local/bin/node)
npm : 6.13.6
OS : Linux 5.3
И это мой сервис для использования HTTP:
import { Injectable } from '@angular/core';
import { AlertController } from '@ionic/angular';
import {HTTP} from '@ionic-native/http/ngx'
@Injectable({
providedIn: 'root'
})
export class HttpService {
respuesta :any[];
url : string ="http://safejewellery.com/pruebaLogin.php";
constructor(private http : HTTP,private alertCtrl: AlertController) { }
verifyUser(){
this.http.sendRequest(this.url,{method: 'get',data:{usuario:'aaa',pass:'123456789'}}).then(
data =>{
this.showError("CI")
this.showError(data.status)
this.showError(JSON.parse(data.data))
}
).catch(
error=>{
this.showError("NI")
console.log(error.status);
console.log(error.error)
}
)
}
async showError(error) {
const alert = await this.alertCtrl.create({
header: "Error",
subHeader: error,
buttons: ["OK"]
});
await alert.present();
}
}
Почему он сказал что этот плагин не установлен?
Спасибо!