Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I am trying to design an app where I would like to call different function on different button. however, I am not sure how to write the google script part. i have 3 functions in my google script but everytime only one functions works. i am unable to direct from the app to a particular function.

`    const doGet = () => {code
    }
    const clear = (e) => {code
    }
    const doPost = (e) => {code
    }` 

alternatively, if i can call a macro from the app, it would serve my purpose too, but i dont know how to do that...

thanks


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
332 views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...