如何在边栏中以及< script>中使用Google表格数据? [英] How can I use Google Sheet data in a sidebar and also within a <script>?

查看:70
本文介绍了如何在边栏中以及< script>中使用Google表格数据?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我目前正在使用以下教程在边栏中显示google表格数据:://yagisanatode.com/2018/02/12/how从Google表格中获取内容并在google-apps-script/#more-219

I am currently working with the following tutorial to display google sheet data in the sidebar: https://yagisanatode.com/2018/02/12/how-to-get-something-from-google-sheets-and-display-it-in-the-sidebar-in-google-apps-script/#more-219

但是,我想在我的html文件中添加一个"for"循环以显示多个复选框(请参见下面的代码).最终,我想将电子表格中的数字"16"更改为"rangeResult"值.您可以提供有关此操作的建议吗?

However, I would like to add a "for" loop in my html file to display a number of checkboxes (see code below). Ultimately, I want to change the number "16" to the "rangeResult" value from my spread sheet. Can you offer suggestions on how to do this?

Code.gs-功能

function numEarlyRelease() {  
  var doc = SpreadsheetApp.openById("1OF6Y1CTU9dkIgd1P-nw-5f2lqHSS5cGZytndwzJhw-o");
  var ss = SpreadsheetApp.getActiveSpreadsheet();
  var numValues = ss.getRange('R19').getValue();
  return numValues;
}

Page.html文件

<!DOCTYPE html>
<html>
 <head>
   <base target="_top">
   <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
 </head>
  <body>
    <h3><script> document.write(new Date().toLocaleDateString()); </script></h3>

    <div id="rangeResult"></div>
    <script>
    function addRange(rangeStartEnd){ 
      $('#rangeResult').text(rangeStartEnd);
    };
    for (var i = 1; i <=16; i++) {
      document.write('<br><input type="checkbox" name="scores" id="i" value="i">'+ i);
    }

    google.script.run.withSuccessHandler(addRange).numEarlyRelease();
    </script> 

    <br><input type="button" value="Submit Check-In" onclick="google.script.host.close()" />
    <input type="button" value="Close" onclick="google.script.host.close()" />   
  </body>
</html>

谢谢您的帮助!

推荐答案

感谢您的建议!下面是我的解决方案. (我已经更改了一些变量的名称以适合我的项目.)

Thank you for your suggestions! Below is my solution. (I've changed the names of some of the variables to fit my project.)

Code.gs

function earlyRelease(e) {
  var doc = SpreadsheetApp.openById("1OF6Y1CTU9dkIgd1P-nw-5f2lqHSS5cGZytndwzJhw-o");
  var ss = SpreadsheetApp.getActiveSpreadsheet();
  var numValues = ss.getRange('R19').getValue();
  var studentName = ss.getSheetValues(20, 18, numValues, 1);

  var html = HtmlService.createHtmlOutputFromFile('Page')
      .setTitle('Early Release')
      .setWidth(300);
  SpreadsheetApp.getUi().showSidebar(html);  }

function earlyReleaseList() {
  var doc = SpreadsheetApp.openById("1OF6Y1CTU9dkIgd1P-nw-5f2lqHSS5cGZytndwzJhw-o");
  var ss = SpreadsheetApp.getActiveSpreadsheet();
  var numValues = ss.getRange('R19').getValue();
  var studentNames = ss.getSheetValues(20, 18, numValues, 1);
  return studentNames; }

Page.html

<!DOCTYPE html>
<html>
  <head>
    <base target="_top">
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
  </head>
  <body>
    <script>
    function addStudents(studentList){ 
      $('#rangeResult').text(studentList);

      document.write(new Date().toLocaleDateString());

      var students = [];
      //The following loop was added to the function
      for (var i = 0; i < studentList.length; i++) {
        document.write('<br><input type="checkbox" name="students" id="i" value="i">'+ studentList[i]);
      }
      //Also added the buttons to the function with document.write rather than html tags outside of the function
      document.write('<br><input type="button" value="Submit Early Release" onclick="google.script.host.close()" />');
      document.write('<input type="button" value="Close" onclick="google.script.host.close()" />');
    };

    google.script.run.withSuccessHandler(addStudents).earlyReleaseList();
    </script> 
  </body>
</html>

这篇关于如何在边栏中以及&lt; script&gt;中使用Google表格数据?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆