gpt4 book ai didi

javascript - 创建工作表后如何在谷歌电子表格中填充数据?

转载 作者:行者123 更新时间:2023-11-29 16:43:49 25 4
gpt4 key购买 nike

我有一个脚本可以创建一个空的谷歌电子表格。创建谷歌电子表格后。我如何在其中添加一些数据?

只需一些字符串就足够了

用于创建文件的脚本:

function createSpread() 
{

var name = $('[name=id]').val();
gapi.client.load('drive', 'v2', function() {

var request = gapi.client.request({
'path': '/drive/v2/files/',
'method': 'POST',
'headers': {
'Content-Type': 'application/json',
},
'body':{
"title" : name,
"mimeType" : "application/vnd.google-apps.spreadsheet",
"parents": [{
"kind": "drive#file",
"id": FOLDER_ID,
}],
}
});
request.execute(function(resp) { console.log(resp)

});
});
}

你能帮助别人吗

提前致谢

最佳答案

给您提供一个额外提示,这是我在使用 Sheets API 写入电子表格时使用的代码片段。

 function writeToSheet(){

//Sheet1 is the name of the my sheet
// "range":"Sheet1!"+A+":"+C, means column A to C since im writing 3 items
var params = {
"range":"Sheet1!"+A+":"+C,
"majorDimension": "ROWS",
"values": [
["name","address", "email"]
],
}
var xhr = new XMLHttpRequest();
xhr.open('PUT', 'https://sheets.googleapis.com/v4/spreadsheets/'+myspreadsheetId+'/'+"values/"+"Sheet1!"+A+":"+C+"?"+'valueInputOption=USER_ENTERED');
xhr.setRequestHeader('Authorization', 'Bearer ' + myAccessToken);

xhr.send(JSON.stringify(params));
}

更多样本可在Basic Writing中找到.

关于javascript - 创建工作表后如何在谷歌电子表格中填充数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43135918/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com