只需要一点帮助就可以开始...
我正在尝试在 Google 站点中运行此 Google 示例脚本,但它不起作用。
我确实按照本教程中提出的程序... https://developers.google.com/apps-script/articles/getting-started-with-sites
function doGet(e) {
var app = UiApp.createApplication();
// hello world label
var helloworldLabel = app.createLabel("I love Apps Script!").setStyleAttribute("fontSize","16px");
// add the label to the app container
app.add(helloworldLabel);
return app;
}
法语错误信息;;; : GOOGLE DRIVE Désolé, la page (ou le document) que vous souhaitez afficher n'existe pas。Vérifiez l'adresse, puis réessayez。
“GOOGLE DRIVE 抱歉,该页面(文档)不存在”...
我可能确实错过了一些非常基本的东西......
当我直接在脚本编辑器中运行其他代码时,它工作正常......
function sendEmail()
{
MailApp.sendEmail('jp.bihin@skynet.be', 'Salut !', 'Ce message est envoyé par des scripts Google Apps. Chouette non ?');
}
谢谢你的帮助。