我有一个脚本,允许用户将图像上传到 Google 文档,这部分有效,但我需要一种方法来检索图像本身,以便它可以显示在 Google 网站上。我尝试使用 doc.getUrl() 但只返回下载图像的链接。有谁知道如何实现这个或其他方式来处理图像上传效果更好?
这是我的代码:
function doGet(e) {
var app = UiApp.createApplication().setTitle("Upload");
var formContent = app.createVerticalPanel();
formContent.add(app.createFileUpload().setName('thefile'));
formContent.add(app.createSubmitButton('Submit'));
var form = app.createFormPanel();
form.add(formContent);
app.add(form);
return app;
}
function doPost(e) {
var fileBlob = e.parameter.thefile;
var doc = DocsList.createFile(fileBlob);
var url = doc.getUrl();
Logger.log(url);
}
在此先感谢您的帮助。