第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何使用與無標(biāo)題不同的名稱將文件上傳到 google drive api

如何使用與無標(biāo)題不同的名稱將文件上傳到 google drive api

ABOUTYOU 2022-12-29 16:38:28
這是我的代碼結(jié)構(gòu),我試圖在對(duì)象“formData.append”中發(fā)送名稱,但我沒有成功。文檔表明:在正文上發(fā)送。文檔鏈接: https ://developers.google.com/drive/api/v3/reference/files/create - https://developers.google.com/drive/api/v3/manage-uploads#http_1我得到了這個(gè)答案。{ "kind": "drive#file", "id": "1uz_NN-IyoiPzaheAiKIJu6qlB7ZfxIX2", "name": "Untitled", "mimeType": "application/x-www-form-urlencoded" }名稱:《無題》- 我會(huì)很感激await User.updateMany({},    [{        $set: {            posts: {                $map: {                    input: "$posts",                    as: "post",                    in: {                        $mergeObjects: [                            "$$post",                            {                                "viewed": {                                    $add: [{ $size: "$$post.visitorIps" }, "$$post.viewed"]                                },                                "visitorIps": []                            }                        ]                    }                }            }        }    }])
查看完整描述

1 回答

?
慕神8447489

TA貢獻(xiàn)1780條經(jīng)驗(yàn) 獲得超1個(gè)贊

這個(gè)改裝怎么樣?

修改點(diǎn):

  • 似乎不能直接multipart/form-data使用ajax 請(qǐng)求FormData()。所以在這種情況下,需要?jiǎng)?chuàng)建結(jié)構(gòu)multipart/form-data并將其作為數(shù)據(jù)發(fā)送。

    • 在您的腳本中,僅上傳文件內(nèi)容而沒有文件元數(shù)據(jù)。這樣,上傳的文件就沒有文件名了。在這種情況下,需要上傳文件內(nèi)容和文件元數(shù)據(jù)multipart/form-data。

  • 在您的腳本中,有 2 個(gè)屬性data。

當(dāng)以上幾點(diǎn)反映到您的腳本中時(shí),它會(huì)變成如下。

修改腳本:

Upload.prototype.doUpload = function () {

    const file = this.file;  // It supposes that "this.file" is the blob.


    const fr = new FileReader();

    fr.readAsDataURL(file);

    fr.onload = function() {

      const boundary = "xxxxxxxxxx";

      let data = "--" + boundary + "\n";

      data += "Content-Type: application/json; charset=UTF-8\n\n";

      data += JSON.stringify({name: "test_file"}) + "\n";

      data += "--" + boundary + "\n";

      data += "Content-Transfer-Encoding: base64\n\n";

      data += fr.result.split(",")[1] + "\n";

      data += "--" + boundary + "--";

      $.ajax({

        type: "POST",

        beforeSend: function(request) {

          request.setRequestHeader("Authorization", "Bearer" + " " + localStorage.getItem("accessToken"));

          request.setRequestHeader("Content-Type", "multipart/related; boundary=" + boundary);

        },

        url: "https://www.googleapis.com/upload/drive/v3/files?uploadType=multipart",

        success: function (data) {

            console.log(data);

        },

        error: function (error) {

            console.log(error);

        },

        async: true,

        data: data,

        cache: false,

        processData: false,

        timeout: 60000

      });

    }

}

筆記:

  • 在這個(gè)修改后的腳本中,

    • 它假定this.file在您的腳本中是 blob。

    • 您的訪問令牌可用于將文件上傳到 Google 云端硬盤。

  • 使用uploadType=multipart時(shí),最大文件大小為 5 MB。請(qǐng)注意這一點(diǎn)。


查看完整回答
反對(duì) 回復(fù) 2022-12-29
  • 1 回答
  • 0 關(guān)注
  • 131 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)