2023.11.22使用flask做一个简单的图片浏览器

2023.11.22使用flask做一个简单的图片浏览器

功能:
实现图片浏览(翻页)功能

程序页面:
2023.11.22使用flask做一个简单的图片浏览器_第1张图片

程序架构:
2023.11.22使用flask做一个简单的图片浏览器_第2张图片

注意:在flask中常会使用src=“{{ url_for(‘static’, filename=‘images/’ + image) }}”,这段代码是在Flask框架中用于获取静态文件的URL的。在Flask中,静态文件通常存放在static文件夹中,比如CSS、JavaScript或者图片文件等。url_for(‘static’, filename=‘images/’ + image)这段代码会生成一个对应静态文件的URL,其中’static’是指定静态文件夹的名称,‘images/’ + image是指定文件夹中图片的路径。

如果image是一个变量,那么在渲染模板的时候就会根据实际的image的值来生成对应的URL。这个URL可以在前端页面中引用,用于加载静态图片文件。

注意静态文件夹如果要改变需要另外声明。

main.py

import os
from flask import Flask, render_template, request

app = Flask(__name__)

@app.route('/')
def index():
    return render_template('index.html')

@app.route('/preview', methods=['POST'])
def preview():
    image_name = request.form['image_name']
    image_dir = os.path.dirname(os.path.abspath(__file__)) + '/static/uploads'
    image_list = sorted(os.listdir(image_dir))
    current_index = image_list.index(image_name)
    prev_index = current_index - 1 if current_index > 0 else None
    next_index = current_index + 1 if current_index < len(image_list) - 1 else None
    prev_image_name = image_list[prev_index] if prev_index is not None else None
    next_image_name = image_list[next_index] if next_index is not None else None
    image_url = f'/static/uploads/{image_name}'
    return render_template('preview.html', image_name=image_name, image_url=image_url, prev_image_name=prev_image_name, next_image_name=next_image_name)

if __name__ == '__main__':
    app.run(debug=True)

preview.html




    Image Preview
    
    
    


    

Image Preview: {{ image_name }}

Preview
{% if prev_image_name %} {% endif %}
{% if next_image_name %} {% endif %}

index.html




    Image Preview


    

Enter Image Name

你可能感兴趣的:(开发日记,flask,python,后端)