1 回答

TA貢獻1851條經(jīng)驗 獲得超5個贊
我認為您的問題的原因可能是google.script.run沒有返回任何值。那么在你的腳本中,下面的修改怎么樣?
修改腳本:
在這種情況下,請criarTabela在 Javascript 端進行修改。
function criarTabela(conteudo) {
? var tabela = document.createElement("table");
? var thead = document.createElement("thead");
? var tbody=document.createElement("tbody");
??
? var thd=function(i){return (i==0)?"th":"td";};
? for (var i=0;i<conteudo.length;i++) {
? ? var tr = document.createElement("tr");
? ? for(var o=0;o<conteudo[i].length;o++){
? ? ? var t = document.createElement(thd(i));
? ? ? var texto=document.createTextNode(conteudo[i][o]);
? ? ? t.appendChild(texto);
? ? ? tr.appendChild(t);
? ? }
? ? (i==0)?thead.appendChild(tr):tbody.appendChild(tr);
? }
? tabela.appendChild(thead);
? tabela.appendChild(tbody);
? document.getElementById("tabela").appendChild(tabela);? // Added
}
google.script.run.withSuccessHandler(criarTabela).Lista_Aguard_Ajuste();? // Modified
筆記:
在此修改中,它假定Lista_Aguard_Ajuste()在您的 Google Apps 腳本中有效。請注意這一點。
添加回答
舉報