How to cancel an upload started with BlobService.createBlockBlobFromBrowserFile?
问题 I'm using Microsoft Azure Storage Client Library's BlobService.createBlockBlobFromBrowserFile to allow users to upload files to an Azure Storage container. I'd like to provide a way for them to cancel an in-progress upload, e.g. in case it's big and taking too long or they chose the wrong file. Is there any way I can do this though? I can't see anything obvious in the API. My code is based on these samples, e.g. var file = document.getElementById('fileinput').files[0]; var customBlockSize =