摘要: //创建 XMLHttpRequest 对象 var xhr = new XMLHttpRequest(); //配置请求方式、请求地址以及是否同步 xhr.open('GET', './play', true); //设置请求结果类型为 blob xhr.responseType = 'blob' 阅读全文
posted @ 2019-11-21 16:22 以身为驴 阅读(2458) 评论(0) 推荐(0) 编辑