gpt4 book ai didi

html - 如何在谷歌应用程序脚本中使用

转载 作者:搜寻专家 更新时间:2023-10-31 02:25:21 26 4
gpt4 key购买 nike

我想使用 src 属性在谷歌应用程序脚本中显示图像。我放了文件夹ID和路径。但是图像无法显示。我在这里共享文件夹。

感谢您的帮助!

https://drive.google.com/drive/folders/0ByNw-B9nXMcbMkxHTGt2X2xUTzQ

function doGet() {
var html = HtmlService.createTemplateFromFile('index').evaluate()
.setTitle('picture').setSandboxMode(HtmlService.SandboxMode.NATIVE);
return html;
}

<!DOCTYPE html>
<html>
<head>
<base target="_top">
</head>
<body>
<p> Dispaly picture </p>
<p><img src="https://drive.google.com/drive/folders/0ByNw-B9nXMcbMkxHTGt2X2xUTzQ/200w.gif"> </p>
</body>
</html>

最佳答案

img src="" 需要您要显示的实际图像的 URL,而不是包含它的文件夹。要获得正确的链接,您需要在其自己的窗口中打开图片或单击共享并以这种方式获取链接。

您图片的正确链接是:

https://drive.google.com/file/d/0ByNw-B9nXMcbSTN2S2ZiYWprdzA/view

要在 src 中使用它,您需要将文件 ID 添加到此格式 URL 的末尾:

https://drive.google.com/uc?export=download&id=

于是变成了:

https://drive.google.com/uc?export=download&id=0ByNw-B9nXMcbSTN2S2ZiYWprdzA

注意:驱动器文件必须与“知道链接的任何人”共享,以便其他用户能够查看该文件或在 G Suite 之外使用。

关于html - 如何在谷歌应用程序脚本中使用 <img src >,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43843917/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com