我使用ionic2樞紐換乘插件上傳圖片。圖像被上傳到雲成功,但它需要太多的時間來上傳。如何加快在ionic2應用程序中的圖像上傳。任何人都可以幫忙嗎?ionic2圖片上傳有效
const fileTransfer: TransferObject = this.transfer.create();
fileTransfer.upload(filename, url, options).then(data => {
this.presentToast('Image succesful uploaded.');
}, err => {
this.presentToast('Error while uploading file.');
});