只是给你一些关于我的问题的背景知识:我正在使用 UI 服务在 Google App Script 中创建一个表单,并将特定的日历事件存储在 dataArray 中。所以事件对象存储在数组中。我想将此数组传递给提交函数,但不知道该怎么做,因为:
- 我无法将其添加为回调元素(因为它不是小部件)
- 我无法将事件对象存储在小部件(即列表框等)中,然后将该小部件添加为回调元素。
这是我正在尝试做的一个简短示例:
var cal= CalendarApp.getDefaultCalendar();
var event= cal.getEvents(new Date("June 16, 2013 PST"),
new Date("July 22, 2013 PST"));
var specific = new Array;
for( var j=0; j<event.length;j++){
specific.push(event[j]);
//This stores the events in the specific variable
//I want to send this variable (w/ the data) to another function on submit
我会很感激你可以借给我的任何建议。
谢谢!