gpt4 book ai didi

html - Springboot : Displaying pictures on html by using the link out of a database

转载 作者:行者123 更新时间:2023-11-29 15:18:30 26 4
gpt4 key购买 nike

我正在使用 springboot 和 thymeleaf 进行映射,以在 html 页面上显示数据库中的数据。

<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8" />
<title></title>
<link rel="stylesheet" type="text/css" th:href="@{/assets/style.css}" />

</head>
<body>
<p th:text="${title}"></p>

<a href="/newPost">Create a new Post</a>
<a href="/newComment">Create a new Comment</a>


<table>
<tr th:each="post : ${posts}">
<td th:text="${post.creationDate}"></td>
<td th:text="${post.titel}"></td>
<td th:text="${post.content}"></td>
<td><a th:href="@{/newComment(postId=${post.id})}">new Comment</a></td>
<td th:text="${post.comments}"></td>
<td><img th:src="${post.bild}"></td>
</tr>
</table>

HeidiSQL

我使用 DTO 来映射实体,但是当显示实际的 html 页面时,图像不会显示(404 错误),即使在我检查标签时链接已显示。 enter image description here

我错过了一些明显的东西吗?如果我不想将图像转换为字节流,这不是在页面上显示图像的简单方法吗?我猜您需要更多信息,但我不知道哪些信息会有帮助。任何帮助表示赞赏!

最佳答案

无法从 Web 服务器上运行的网页访问本地文件系统。请参阅this answer了解详情。

关于html - Springboot : Displaying pictures on html by using the link out of a database,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59531233/

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