您好,登錄后才能下訂單哦!
今天要做一個(gè)簡(jiǎn)單的頁面,可以實(shí)現(xiàn)將文件 上傳到服務(wù)器(保存在指定文件夾)
#Sample.py
# 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__) # 當(dāng)前文件所在路徑 upload_path = os.path.join(basepath, 'static\uploads',secure_filename(f.filename)) #注意:沒有的文件夾一定要先創(chuàng)建,不然會(huì)提示沒有該路徑 f.save(upload_path) return redirect(url_for('upload')) return render_template('upload.html') if __name__ == '__main__': app.run(debug=True)
#upload.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <h2>文件上傳示例</h2> <form action="" enctype='multipart/form-data' method='POST'> <input type="file" name="file"> <input type="submit" value="上傳"> </form> </body> </html>
這里要注意:<form>標(biāo)簽里的enctype屬性一定要填寫'multipart/form-data'
意思是不加密,上傳文件的時(shí)候一定要選這個(gè),不然不行
好了接下來我們看看運(yùn)行效果
1. 初始界面
2. 選擇一個(gè)文件,點(diǎn)擊上傳
3. 最后網(wǎng)頁會(huì)回到初始界面,然后上傳的文件,也保存在我們指定的目錄上了
至此,項(xiàng)目結(jié)束@@
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。