我有一个脚本可以创建一个空的谷歌电子表格。 创建谷歌电子表格后。我如何在其中添加一些数据?
只是一些字符串就足够了
用于创建文件的脚本:
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)
});
});
}
你能帮助任何人吗p>
提前致谢
答案 0 :(得分:5)
这只是一个额外的提示,这是我在使用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中找到了更多样本。
答案 1 :(得分:0)
您需要使用Google表格API,它允许您读取和写入单个单元格或单元格范围。见https://developers.google.com/sheets/api
此外,如果这是一个新应用程序,您可能应该开始使用Drive API的v3来节省必须在某个时候进行升级。