我正在尝试使用Romain Vialard 和 James Ferreira 书中的Google Apps 脚本建议框库在我的 Google 电子表格中添加自动完成功能:
function doGet() {
// Get a list of all my Contacts
var contacts = ContactsApp.getContacts();
var list = [];
for(var i = 0; i < contacts.length; i++){
var emails = contacts[i].getEmails();
if(emails[0] != undefined){
list.push(emails[0].getAddress());
}
}
var app = UiApp.createApplication();
var suggestBox = SuggestBoxCreator.createSuggestBox(app, 'contactPicker', 200, list);
app.add(suggestBox);
return app;
}
function onEdit() {
var s = SpreadsheetApp.getActiveSheet();
if( s.getName() == "my_sheet_name" ) { //checks that we're on the correct sheet
var r = s.getActiveCell();
if( r.getColumn() == 1) {
doGet();
}
}
}
但是当我开始编辑“my_sheet_name”的第 1 列时,什么也没有发生(如果我替换doGet()
为其他函数,这个其他函数运行正常)。我已经安装了 Suggest Box 库。那么,为什么该doGet()
功能不起作用?