Crud Webapp Google Apps Script

╄→гoц情女王★ 提交于 2019-12-21 18:36:37

问题


Is it possible create Crud Webapp with Google Apps Script. I need to create a web table able to update and get values from Google spreadsheet?


回答1:


yes its possible, you can insert, update a row, delete and retreive a row using google app scripts try this link https://github.com/AishwaryT/Google-app-script-crud let me know if you face any problem.




回答2:


Yes absolutely it is possible. Write a code in Google app script for CRUD operation over the Google spreadsheet (like Insert, Update, delete). accept the parameters using doGet() / doPost() method to insert/update data into the Google spreadsheet and return the updated data or any response in the JSON/XML or in the string format, deploy your app script (with "anyone even anonymous"), copy the URL of the deployed script and call to that URL from your your web application (in java script AJAX call) and get response from app script to your application.

Reference :https://developers.google.com/apps-script/



来源:https://stackoverflow.com/questions/38014698/crud-webapp-google-apps-script

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!