在 Google Apps 脚本中提交表单后刷新或清除表单?
我在 Google Apps 脚本中创建了一个表单并将其嵌入到 Google 协作平台中。提交后如何刷新或清除表单?我可以将数据保存到电子表格中,但数据仍保留在表单中。
I have created a form in Google Apps Script and embedded it into Google Sites. How do I refresh or clear the form after it has been submitted? I am able to save the data to a spreadsheet but the data stays in the form.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这里可以做两件事:
将FormPanel对象的visible属性设置为false。
迭代 FormPanel 中的每个小部件,设置文本“”或调用小部件清除方法(视情况而定)。
迭代
I think there are two things you can do here:
set the visible attribute of the FormPanel object to false.
iterate over each widget in the FormPanel setting the text "" or calling the widgets clear method, as the case may be.