Home > Mobile >  google app script trying to access post data on web app via do post
google app script trying to access post data on web app via do post

Time:12-21

this is the out put of(e.parameters)

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. :)

  • Related