我如何从 html 中获取图像的单独 url,如下所示 http(s)://<hostname>/<chosenpath>/1
How can i get seperate urls for images from html as follows http(s)://<hostname>/<chosenpath>/1
我是 Appengine 的新手,html 需要一些帮助。
我已将以下 html 文件部署到 appengine,但我需要获取所有图像的 url,如下所示 http(s)://hostname/chosenpath/1(即图像 1 为 1,依此类推)
任何帮助将不胜感激。谢谢
<!DOCTYPE html>
<html>
<body>
<figure1>
<img src="https://storage.googleapis.com/ccws-cw1-bucket/e4.jpg" alt="Glasgow city" width="500" height="333" title="Glasgow City">
<figcaption>Glasgow City located in Scotland</figcaption>
</figure1>
</figure2>
<img src="https://storage.googleapis.com/ccws-cw1-bucket/image.jpg" alt="Islamabad city" width="500" height="333" title = "Islamabad City">
<figcaption>Islamabad City is the capital of Pakistan</figcaption>
</figure2>
</figure3>
<img src="https://storage.googleapis.com/ccws-cw1-bucket/Istanbul.jpg" alt="Istanbul city" width="500" height="333", title = "Istanbul City">
<figcaption>Istanbul City is a city in Turkey</figcaption>
</figure3>
</body>
</html>
您可以执行以下操作
有一个像http(s)://hostname/chosenpath/img/1
这样的特殊路径。这里img
是你路径中的一个特殊文件夹
编写一个路由处理程序来处理任何以 /img/
结尾的路由,然后您可以在其中手动检索文件并将其 return 发送给用户。您也可以从这里重定向到 https://storage.googleapis.com
url
您也可以保留您提到的 url 路径,但添加代码以确定用户请求的文件是图像文件(检查它是否以 .png、jpg 等结尾),然后您将用户重定向到 https://storage.googleapis.com
url
我是 Appengine 的新手,html 需要一些帮助。 我已将以下 html 文件部署到 appengine,但我需要获取所有图像的 url,如下所示 http(s)://hostname/chosenpath/1(即图像 1 为 1,依此类推)
任何帮助将不胜感激。谢谢
<!DOCTYPE html>
<html>
<body>
<figure1>
<img src="https://storage.googleapis.com/ccws-cw1-bucket/e4.jpg" alt="Glasgow city" width="500" height="333" title="Glasgow City">
<figcaption>Glasgow City located in Scotland</figcaption>
</figure1>
</figure2>
<img src="https://storage.googleapis.com/ccws-cw1-bucket/image.jpg" alt="Islamabad city" width="500" height="333" title = "Islamabad City">
<figcaption>Islamabad City is the capital of Pakistan</figcaption>
</figure2>
</figure3>
<img src="https://storage.googleapis.com/ccws-cw1-bucket/Istanbul.jpg" alt="Istanbul city" width="500" height="333", title = "Istanbul City">
<figcaption>Istanbul City is a city in Turkey</figcaption>
</figure3>
</body>
</html>
您可以执行以下操作
有一个像
http(s)://hostname/chosenpath/img/1
这样的特殊路径。这里img
是你路径中的一个特殊文件夹编写一个路由处理程序来处理任何以
/img/
结尾的路由,然后您可以在其中手动检索文件并将其 return 发送给用户。您也可以从这里重定向到https://storage.googleapis.com
url
您也可以保留您提到的 url 路径,但添加代码以确定用户请求的文件是图像文件(检查它是否以 .png、jpg 等结尾),然后您将用户重定向到 https://storage.googleapis.com
url