谷歌脚本搜索日历按变量

时间:2018-09-02 14:26:31

标签: javascript search google-apps-script calendar

我想基于变量在Google日历中查找事件(该变量将在最终版本的对话框中发送)。

会是这样的:

var texts = "word_to_find";
var events = cal.getEvents(new Date("January 1, 2010 00:00:00 CST"), new Date("January 1, 2020 23:59:59 CST"), {search: '+texts+'});

因此,文本是一个变量,用于接收所需的搜索词(此处为word_to_find)。 语法错误,因为在运行时+ texts +不会被变量text的值替换。

正确的语法是什么?

1 个答案:

答案 0 :(得分:0)

代替

'+texts+'

使用

texts

有关更多详细信息,请查看有关使用变量的JavaScript文档,例如Storing the information you need — Variables