为了账号安全,请及时绑定邮箱和手机立即绑定

从 Google 工作表到 Web 应用程序显示匹配值时出错

从 Google 工作表到 Web 应用程序显示匹配值时出错

牛魔王的故事 2022-10-13 19:24:25
嘿,当用户输入特定的代码编号时,我正在尝试从 Google 表格中显示一行值。但我的 .gs 出现错误:TypeError:codeList.IndexOf 不是函数我的控制台中出现错误:在 getTable 未捕获这是我的 .html 代码:  document.getElementById("codeInput").addEventListener("input",getData);  function getData(){  var code = document.getElementById("codeInput").value;    if(code.length === 5){       google.script.run.withSuccessHandler(view).getTable(code);       }   }  function view(array){    var tbody = document.getElementById("table-body");    var row = document.createElement("tr");    var col1 = document.createElement("td");    col1.textContent = array[0];    var col2 = document.createElement("td");    col2.textContent = array[1];    var col3 = document.createElement("td");    col3.textContent = array[2];    row.appendChild(col1);    row.appendChild(col2);    row.appendChild(col3);    tbody.appendChild(row);   }这是我的 .gs 代码:function getTable(code){   var url = "https://docs.google.com/spreadsheets/d/1Nh-CCXayaQ8YFuxV76MGnWiAF2rgcxf5bCJwJWvy_-s/edit#gid=0";   var ss = SpreadsheetApp.openByUrl(url);   var ws = ss.getSheetByName("IPP Gol I-III");   var data = ws.getRange(2, 1, ws.getLastRow()-1, 4).getValues();   var codeList = data.map(function(r){return r[1]; });   var submissionList = data.map(function(r){return r[0]; });   var nameList = data.map(function(r){return r[2]; });   var emailList = data.map(function(r){return r[3]; });   var position = codeList.IndexOf(code);   var array = [submissionList[position],nameList[position],emailList[position]];   if(position > -1){      return array;   }else{      return 'Unavailable';   }                     }您的回复将不胜感激。先感谢您!
查看完整描述

1 回答

?
汪汪一只猫

TA贡献1898条经验 获得超8个赞

var position = codeList.IndexOf(code);应该像var position = codeList.indexOf(code);Google Apps Script 和 JavaScript 中的这种情况一样编写。



查看完整回答
反对 回复 2022-10-13
  • 1 回答
  • 0 关注
  • 70 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信