需要一些帮助将答案分配给Google App Maker表单

时间:2019-11-18 14:11:59

标签: google-app-maker

在Google App Maker表单上,如何根据另一个答案为问题分配答案,或者问题是否为空白。

例如时间输入表单问题要求输入输入日期,如果为空白,我该如何回答今天的日期?

Picture Question

1 个答案:

答案 0 :(得分:0)

根据您的用例,我建议以下内容:

Datebox小部件>事件> onAttach事件输入以下代码:

var today = new Date();
widget.value = new Date(today.getFullYear(), today.getMonth(), today.getDate());

然后在“提交按钮”的onClick事件中输入以下内容,这将在成功提交新条目后重新填充日期框小部件:

widget.datasource.createItem(function() {
  var today = new Date();
  widget.datasource.item.Date = new Date(today.getFullYear(), today.getMonth(), today.getDate());
});