出于某种原因,我无法在第2039行之后同步,每次尝试时都会出现以下错误(来自执行记录):
[16-05-06 15:01:13:134 PDT] Blob.getBytes()[0.999秒]
[16-05-06 15:01:13:146 PDT] Blob.getContentType()[0秒]
[16-05-06 15:01:13:350 PDT]执行失败:空响应(第30行,文件“代码”)[总运行时间为8.735秒]
此事件没有记录。
我不认为我在第2039行之后提供的数据存在问题,因为我创建了另一个Google电子表格&具有此类数据的Fusion Table可以很好地同步。
编辑:我不确定this question中提到的技术限制是否适用于我在Google电子表格中执行的同步过程 - >脚本编辑器。
以下是我在脚本编辑器中使用的代码:
/**
* AppsScript script to run in a Google Spreadsheet that synchronizes its
* contents with a Fusion Table by replacing all rows.
*/
// Replace with your Fusion Table's ID (from File > About this table)
var TABLE_ID = 'YOUR TABLE ID';
// First row that has data, as opposed to header information
var FIRST_DATA_ROW = 2;
// True means the spreadsheet and table must have the same column count
var REQUIRE_SAME_COLUMNS = true;
/**
* Replaces all rows in the Fusion Table identified by TABLE_ID with the
* current sheet's data, starting at FIRST_DATA_ROW.
*/
function sync() {
var tasks = FusionTables.Task.list(TABLE_ID);
// Only run if there are no outstanding deletions or schema changes.
if (tasks.totalItems == 0) {
var sheet = SpreadsheetApp.getActiveSheet();
var wholeSheet = sheet.getRange(1, 1, sheet.getLastRow(),
sheet.getLastColumn());
var values = wholeSheet.getValues();
if (values.length > 1) {
var csvBlob = Utilities.newBlob(convertToCsv_(values),
'application/octet-stream');
FusionTables.Table.replaceRows(TABLE_ID, csvBlob,
{ isStrict: REQUIRE_SAME_COLUMNS, startLine: FIRST_DATA_ROW - 1 });
Logger.log('Replaced ' + values.length + ' rows');
}
} else {
Logger.log('Skipping row replacement because of ' + tasks.totalItems +
' active background task(s)');
}
}
/**
* Converts the spreadsheet values to a CSV string.
* @param {Array} data The spreadsheet values.
* @return {string} The CSV string.
*/
function convertToCsv_(data) {
// See https://developers.google.com/apps-script/articles/docslist_tutorial#section3
var csv = '';
for (var row = 0; row < data.length; row++) {
for (var col = 0; col < data[row].length; col++) {
var value = data[row][col].toString();
if (value.indexOf(',') != -1 ||
value.indexOf('\n') != -1 ||
value.indexOf('"') != -1) {
// Double-quote values with commas, double quotes, or newlines
value = '"' + value.replace(/"/g, '""') + '"';
data[row][col] = value;
}
}
// Join each row's columns and add a carriage return to end of each row
// except the last
if (row < data.length - 1) {
csv += data[row].join(',') + '\r\n';
}
else {
csv += data[row];
}
}
return csv;
}
是否有可能只更新某些行/列而不是整个电子表格,或者增加限制?