今天要做一个简单的页面,可以实现将文件 上传到服务器(保存在指定文件夹)
#sample.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# coding:utf-8 from flask import flask,render_template,request,redirect,url_for from werkzeug.utils import secure_filename import os app = flask(__name__) @app .route( '/upload' , methods = [ 'post' , 'get' ]) def upload(): if request.method = = 'post' : f = request.files[ 'file' ] basepath = os.path.dirname(__file__) # 当前文件所在路径 upload_path = os.path.join(basepath, 'static\uploads' ,secure_filename(f.filename)) #注意:没有的文件夹一定要先创建,不然会提示没有该路径 f.save(upload_path) return redirect(url_for( 'upload' )) return render_template( 'upload.html' ) if __name__ = = '__main__' : app.run(debug = true) |
#upload.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!doctype html> <html lang = "en" > <head> <meta charset = "utf-8" > <title>title< / title> < / head> <body> <h1>文件上传示例< / h1> <form action = "" enctype = 'multipart/form-data' method = 'post' > < input type = "file" name = "file" > < input type = "submit" value = "上传" > < / form> < / body> < / html> |
这里要注意:<form>标签里的enctype属性一定要填写'multipart/form-data'
意思是不加密,上传文件的时候一定要选这个,不然不行
好了接下来我们看看运行效果
1. 初始界面
2. 选择一个文件,点击上传
3. 最后网页会回到初始界面,然后上传的文件,也保存在我们指定的目录上了
至此,项目结束@@
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://www.cnblogs.com/wongbingming/p/6802660.html