我需要为Google表单问题中的关键字插入过滤器,以便稍后将答案提取到JSON中。
5000
此函数将获得问题1和2的结果,但是,除了硬编码,我需要遍历所有问题以寻找关键字“ title”和“ description”,并将function getParamsForTrello ( questions ) {
var result = {};
result.name = questions[1].getResponse();
result.description = questions[2].getResponse() + ": " + questions[4].getResponse();
return result;
}
插入JSON对象。
更新:问题是getResponse()
,我需要知道关键字的字符串。