Я хочу выложить файл в ионные. Я перехожу по этой ссылке - https://www.youtube.com/watch?v=3f0oLzDazS0
Но я хочу загрузить файл через php. Как я могу позвонить в php файл? Пожалуйста, сообщите.
HTML-код
<button ion-button (click)="choose()">Upload</button>
ts код
choose()
{
this.filechooser.open().then((uri) => {
alert(uri);
this.file.resolveLocalFilesystemUrl(uri).then((newUrl) =>{
alert(JSON.stringify(newUrl));
let dirPath = newUrl.nativeURL;
let dirPathSegments = dirPath.split('/');
dirPathSegments.pop();
dirPath = dirPathSegments.join('/');
this.file.readAsArrayBuffer(dirPath,newUrl.name).then((buffer =>{
this.upload(buffer,newUrl.name);
}));
});
});
}
upload(buffer , name)
{ }