我的服务器响应有问题(我认为)。
google.script.run.withSuccessHandler(theFunc).findInRow(query, sheetName);
function tehFunc(e) {
console.log('here');
var val;
$.each(e, function(i, item) {
val = val+item.el1 + ' - ' + item.el2;
})
}
错误:
未捕获的TypeError:a不是函数
控制台刚刚不显示;
服务器端:
findInRow函数返回Logger.log中的数据,如下所示
Logger.log([[{el1=3.0, el2=0.79}], []])
答案 0 :(得分:3)
您的代码示例错过了theFunc
vs tehFunc
的拼写错误。 theFunc
在您的示例中不是声明的函数。