向用户

时间:2015-10-24 17:37:20

标签: javascript google-apps-script google-apps google-form

基本上,我希望用户能够点击菜单项,并且表单将以测验的方式打开。程序将返回响应并使用正确的答案进行检查,并返回测验结果。问题是,表单已创建,但我无法找到访问它的方法。以下是创建表单的代码:



var quizQuestions = ["question1", "q2", "q2"];
  var quizChoices = [["choice1", "c2", "c3", "c4"], ["c1", "c2", "c3", "c4"], ["c1", "c2", "c3", "c4"]];
  var quizAnswers = ["answer1", "a2", "a3"];
  var responses = [];
  var form = FormApp.create('Quiz');
  for(i=0; i<quizQuestions.length; i++) {
    form.addMultipleChoiceItem()
      .setTitle(quizQuestions[i])
      .setChoiceValues(quizChoices[i])
      .showOtherOption(true);
    }
&#13;
&#13;
&#13;

我尝试过使用FormApp.openById(&#34; id&#34;)方法,但我无法将表单本身显示给用户。我正在使用Google文档,而不是电子表格,因此很难找到任何文档。

0 个答案:

没有答案