我想知道如何检查Google脚本中的输入是否为空。
当我留下输入时清空参数并在脚本中记录'e':
[17-03-10 08:50:33:669 CET] Logger.log([{parameter = {emptyInput =,notEmptyInput = 012345},contextPath =,contentLength = 96,queryString = null,parameters = {emptyInput = [],notEmptyInput = [012345],= []},=},[]] ...)[0 seconden]
可能是Google apps script: Check field input empty的副本,但第二个答案基于 now 已弃用的代码..
我知道在将数据发送到Google脚本之前我可以检查我的前端代码..但我想知道这是否也可以。
编辑:我将添加我已经尝试检查null,undefined和“”。我也尝试了if(!e.parameters.emptyVar)
和if(e.parameters.emptyVar ==)
(我知道......),但似乎没有任何效果。
提前致谢