gushoubang 3 месяцев назад
Родитель
Сommit
f00670eedd
1 измененных файлов с 10 добавлено и 4 удалено
  1. 10 4
      main.py

+ 10 - 4
main.py

@@ -30,17 +30,23 @@ def get_data():
     })
 
 # POST 上传单张图片
+
+
 @app.route('/api/upload_single_image', methods=['POST'])
-def upload_image():
+def upload_single_image():
     # 获取上传的文件
-    img = request.files['img1']
+    img = request.files['img']
+    # 文件夹不存在则创建
+    if not os.path.exists(uploadPath):
+        os.makedirs(uploadPath)
+
     # 保存文件
-    filePath = 'predict/' + str(uuid.uuid4()) + img.filename
+    filePath = uploadPath + str(uuid.uuid4()) + img.filename
 
     img.save(filePath)
     return jsonify({
         "message": "上传成功",
-        "data":{
+        "data": {
             "img": filePath
         }
     })