进入下面的代码注释代码运行正常,但同样的insertTable发出错误服务不可用:文档
function createTbl(){
var body = DocumentApp.getActiveDocument().getBody();
// Create a two-dimensional array containing the cell contents.
var cells = [
['Row 1, Cell 1', 'Row 1, Cell 2'],
['Row 2, Cell 1', 'Row 2, Cell 2']
];
var tbl = body.appendTable(cells);
var row = tbl.getChild(0);
var cell = row.getChild(0);
//cell.insertParagraph(0,'Hello Wrold!'));
cell.insertTable(0,cells)
}
答案 0 :(得分:0)
这是Apps脚本中的已知错误,只要脚本尝试将子表添加到TableCell,就会弹出。