Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想为用户提供取消现有文件上传的能力,是否有任何解决方法可以允许这样做?
从版本 0.6.1 开始,有...
如果您像这样上传文件:
var uploader = new Slingshot.Upload("myFileUploads"); uploader.send(document.getElementById('input').files[0]);
然后您可以使用以下命令中止它:
uploader.xhr.abort();