Flask Web開發(fā)入門之文件上傳(八)
本章我們介紹Flask Web開發(fā)中涉及的文件上傳模塊
定義后臺接收處理邏輯
# http://flask.pocoo.org/docs/0.12/patterns/fileuploads/
@app.route('/upload', methods=['POST'])
def upload_file():
if request.method == 'POST':
# check if the post request has the file part
if 'file' not in request.files:
logger.debug('No file part')
return jsonify({'code': -1, 'filename': '', 'msg': 'No file part'})
file = request.files['file']
# if user does not select file, browser also submit a empty part without filename
if file.filename == '':
logger.debug('No selected file')
return jsonify({'code': -1, 'filename': '', 'msg': 'No selected file'})
else:
try:
if file and allowed_file(file.filename):
origin_file_name = file.filename
logger.debug('filename is %s' % origin_file_name)
# filename = secure_filename(file.filename)
filename = origin_file_name
if os.path.exists(UPLOAD_PATH):
logger.debug('%s path exist' % UPLOAD_PATH)
pass
else:
logger.debug('%s path not exist, do make dir' % UPLOAD_PATH)
os.makedirs(UPLOAD_PATH)
file.save(os.path.join(UPLOAD_PATH, filename))
logger.debug('%s save successfully' % filename)
return jsonify({'code': 0, 'filename': origin_file_name, 'msg': ''})
else:
logger.debug('%s not allowed' % file.filename)
return jsonify({'code': -1, 'filename': '', 'msg': 'File not allowed'})
except Exception as e:
logger.debug('upload file exception: %s' % e)
return jsonify({'code': -1, 'filename': '', 'msg': 'Error occurred'})
else:
return jsonify({'code': -1, 'filename': '', 'msg': 'Method not allowed'})
判定文件類型
def allowed_file(filename):
return '.' in filename and \
filename.rsplit('.', 1)[1].lower() in ALLOWED_EXTENSIONS
前臺頁面代碼
<div class="layui-inline">
<label class="layui-form-label">上傳文件</label>
<div class="layui-input-inline">
<input type="text" name="attach" id="upload_message" lay-verify="required" autocomplete="off"
class="layui-input" readonly="readonly">
</div>
</div>
<div class="layui-inline">
<img id='img_delete' src="{{ url_for('static', filename='images/delete.png')}}" onclick="do_delete()"
style="display: none;">
<button type="button" class="layui-btn" id="upload"><i class="layui-icon"></i>上傳文件</button>
</div>
上傳按鈕初始化及回調(diào)
layui.use(['upload', 'layer'], function () {
var upload = layui.upload;
var layer = layui.layer;
upload.render({
elem: '#upload'
, url: '/upload'
, accept: 'file'
, exts: 'txt'
, size: 2048
, done: function (res) {
console.log(res);
if (res.code === 0) {
layer.msg(res.filename + '上傳成功');
$("#upload_message").val(res.filename);
$("#img_delete").show()
} else {
layer.alert('上傳失敗');
$("#upload_message").val('上傳失??!');
}
}
});
})
當(dāng)然允許上傳,同時也應(yīng)該允許對以刪除文件進行刪除
@app.route('/delete', methods=['GET'])
def delete_file():
if request.method == 'GET':
filename = request.args.get('filename')
timestamp = request.args.get('timestamp')
logger.debug('delete file : %s, timestamp is %s' % (filename, timestamp))
try:
fullfile = os.path.join(UPLOAD_PATH, filename)
if os.path.exists(fullfile):
os.remove(fullfile)
logger.debug("%s removed successfully" % fullfile)
return jsonify({'code': 0, 'msg': ''})
else:
return jsonify({'code': -1, 'msg': 'File not exist'})
except Exception as e:
logger.debug("delete file error %s" % e)
return jsonify({'code': -1, 'msg': 'File deleted error'})
else:
return jsonify({'code': -1, 'msg': 'Method not allowed'})
刪除按鈕初始化及回調(diào)處理
function do_delete() {
var filename = $("#upload_message").val();
layui.use(['upload', 'layer'], function () {
var layer = layui.layer;
$.ajax({
url: '/delete?filename=' + filename + "×tamp=" + new Date().getTime()
, type: 'GET'
, success: function (response) {
console.log(response)
if (response.code == 0) {
layer.msg('"' + filename + '"刪除成功!');
$("#upload_message").val('')
$("img_delete").hide()
} else {
layer.msg('"' + filename + '"刪除失??!');
}
}
})
})
}
實現(xiàn)效果

源碼參考:flask-sqlalchemy-web
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
Python導(dǎo)入父文件夾中模塊并讀取當(dāng)前文件夾內(nèi)的資源
這篇文章主要給大家介紹了關(guān)于Python導(dǎo)入父文件夾中模塊并讀取當(dāng)前文件夾內(nèi)資源的相關(guān)資料,文中通過示例代碼介紹的非常詳細,對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2020-11-11
python基礎(chǔ)教程之分支、循環(huán)簡單用法
這篇文章主要介紹了python基礎(chǔ)教程之分支、循環(huán)簡單用法,結(jié)合實例形式分析了Python分支及循環(huán)語句的簡單使用方法,需要的朋友可以參考下2016-06-06
Python 正則表達式 re.match/re.search/re.sub的使用解析
今天小編就為大家分享一篇Python 正則表達式 re.match/re.search/re.sub的使用解析,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2019-07-07
matlab中二維插值函數(shù)interp2的使用詳解
這篇文章主要介紹了matlab中二維插值函數(shù)interp2的使用詳解,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2020-04-04
python數(shù)據(jù)清洗中的時間格式化實現(xiàn)
本文主要介紹了python數(shù)據(jù)清洗中的時間格式化實現(xiàn),文中通過示例代碼介紹的非常詳細,對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2022-05-05
python OpenCV的imread不能讀取中文路徑問題及解決
這篇文章主要介紹了python OpenCV的imread不能讀取中文路徑問題及解決方案,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2022-07-07

