如何使用HTML使用图像URL显示数据库中的图像?

时间:2018-01-05 09:08:40

标签: html

由于我正在做一个小项目,我想要检索我存储到我的数据库中的图像并将这些图像传递到我的本地目的地,直到这个我试过,我没有得到我预期的输出我需要一些建议我不知道我做了什么,任何人都可以帮助我。

这是我的HTML:

<!DOCTYPE html>

<html>
<head>
<title>JavaScript file upload</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">

</head>
<body>


  <fieldset>
    <legend>Upload photo</legend>
    <input type="file" name="photo" id="photo">
    <input type="submit" value="Upload">
    <hr>
    <img src="{{url_for('static',filename='static/file/{{row[7]}}')}}">
  </fieldset>


</body>
</html> 

我的预期输出是:

enter image description here

1 个答案:

答案 0 :(得分:0)

是的,我得到了我的输出

<!DOCTYPE html>

<html>
<head>
<title>JavaScript file upload</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">

</head>
<body>


  <fieldset>
    <legend>Upload photo</legend>
    <input type="file" name="photo" id="photo">
    <input type="submit" value="Upload">
    <hr>
    <img src="{{url_for('static',filename='static/file/{{row[7]}}')}}">
  </fieldset>


</body>
</html>

这里&#34; {{row [7]}}&#34;我有我保存的图像的路径,我只是检索并显示。