我尝试使用Google Apps脚本向Google文档添加编辑器和查看器。 addEditors()
的文档说:
将给定的用户数组添加到Document的编辑器列表中。
我无法弄清楚如何为此配置或使用数组。该数组由从不同脚本文件传递的值确定。
答案 0 :(得分:0)
好吧,如果没有任何代码,您需要执行以下操作:
function addEditors() {
var emails = [
'john@example.com',
'steve@example.com',
'bill@example.com'
];
DocumentApp.getActiveDocument().addEditors(emails);
}
数组是Javascript中的变量类型,您需要了解它才能开始使用Apps脚本。
您可以在此处详细了解数组:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array
或者在FreeCodeCamp上进行一些练习:https://www.freecodecamp.com/challenges/store-multiple-values-in-one-variable-using-javascript-arrays
祝你好运。