码迷,mamicode.com
首页 > 编程语言 > 详细

原生Javascript使用fetch发起请求_模拟get|post|文件流下载等

时间:2020-04-02 16:18:04      阅读:92      评论:0      收藏:0      [点我收藏+]

标签:文件   var   ext   turn   jquer   revoke   span   ret   class   

  有时候,我们无法借助熟悉的jquery发起请求,原生JS里是支持fetch函数的,这是个高度封装的方法,帮助我们做了很多底层的封装,下面列举一些发起请求的示例:

 

  1-发起Get请求:

//httpGet请求
    var httpGet = async function (getUrl) {
        var opts = {
            method: "GET",
            credentials: ‘include‘ // 强制加入凭据头
        }
        await fetch(getUrl, opts).then((response) => {
            return response.text();
        }).then((responseText) => {
            result = responseText;
        }).then((error) => {

        });
        return result;
    };

 

  2-发起Get文件流-支持设置保存文件名-下载:

    //执行httpGet下载
    var httpDownLoadFile = async function (getUrl, fileName) {
        var opts = {
            method: "GET",
            credentials: ‘include‘ // 强制加入凭据头
        }
        await fetch(getUrl, opts).then((response) => {
            return response.blob();
        }).then((blob) => {
            var url = window.URL.createObjectURL(blob);
            var a = document.createElement(‘a‘);
            a.href = url;
            a.download = fileName;
            a.click();
            window.URL.revokeObjectURL(url);
        }).then((error) => {

        });
    };

 

原生Javascript使用fetch发起请求_模拟get|post|文件流下载等

标签:文件   var   ext   turn   jquer   revoke   span   ret   class   

原文地址:https://www.cnblogs.com/lxhbky/p/12620086.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!