I need to access formIDArray but in appscript return nothing when i call that. And how can i access this object ("FormIDArray[]") from the appscript
CodePudding user response:
var array = e.parameters["FormIDArray[]"];
e.parameters convert every key's to have an array. there for array containing keywords become ("array[]") appending "[]" that thing end of keyword. You can access that by simply as describe top. :)