标签: javascript google-apps-script google-sites
我想探索使用js或jquery发送snmp get请求的可能性。
理想情况下,我喜欢纯粹的JS,所以谷歌网站可以支持这个动作(如果我错了,请纠正我,但我不认为GS支持jquery。)
这个话题可能很广泛但我只是在寻找一个起点。
答案 0 :(得分:1)
Apps脚本支持HTML服务中的jQuery,与.gs文件中的Javascript相反,后者是服务器端代码。您可以使用带有高级参数的UrlFetchApp.fetch()服务来发出GET请求。
.gs
UrlFetchApp.fetch()
GET
Google Documentation - jQuery - Best Practices
Google Documentation - jQuery
Google Documentation - urlFetch