Google App Scripts + Google Sheet api

Milk Midi
2 min readApr 10, 2019

--

大家好,我是奶綠茶

在純前端的情況下,想要有 DB 可以記些資料,一般都需要後端工程師的幫忙,還要有資料庫,還要有主機空間。

這時可以使用 Google App Scripts(充當backend語言) + Google Sheet(充當資料庫),就可以實作一個小型帶 Database 的應用程式

Google App Scripts 教學可以參考這篇
https://www.oxxostudio.tw/articles/201805/backend-apps-script.html

我的 Google App Scripts Example
Get ,function 名稱一定要叫 doGet
Post,function 名稱一定要叫 doPost
Google App Scripts 語法跟 js 一模一樣(也許有不一樣的,但我還沒發現)
debugGet 和 debugPost 都是測試用的。

純前端的網址:
https://codepen.io/milkmidi/pen/QPdXxR

用 Get 取得 Google Sheet 的列表
用 Post 寫值到 Google Sheet 裡

Example 用的 Google Sheet
https://docs.google.com/spreadsheets/d/14q38yMwbrI0c9Mq6PrOB-oxndFmk3wg6_SjeMtXi6Qg/edit#gid=0

--

--

Responses (1)