加入类型转换逻辑,防止解码失败
This commit is contained in:
@@ -541,12 +541,10 @@ def upload_file():
|
|||||||
file_type = 'video'
|
file_type = 'video'
|
||||||
|
|
||||||
if file and allowed_file(file.filename, file_type):
|
if file and allowed_file(file.filename, file_type):
|
||||||
# 获取原始文件名和扩展名
|
# 生成安全的文件名
|
||||||
original_filename = secure_filename(file.filename)
|
filename = secure_filename(file.filename)
|
||||||
file_ext = original_filename.rsplit('.', 1)[1].lower()
|
# 生成唯一文件名
|
||||||
|
unique_filename = f"{uuid.uuid4().hex}.{filename}"
|
||||||
# 生成唯一文件名,保持原始扩展名
|
|
||||||
unique_filename = f"{uuid.uuid4().hex}.{file_ext}"
|
|
||||||
|
|
||||||
# 确保上传目录存在
|
# 确保上传目录存在
|
||||||
upload_folder = os.path.join(current_app.root_path, 'static', 'uploads')
|
upload_folder = os.path.join(current_app.root_path, 'static', 'uploads')
|
||||||
|
|||||||
Reference in New Issue
Block a user