Ошибка загрузки файла с помощью Python Flask с ошибкой 404 - PullRequest
0 голосов
/ 29 сентября 2019

Следуя документации / учебным пособиям Flask по загрузке файла, я использовал этот код:

main.py:

from flask import render_template, jsonify, Flask, redirect, url_for, request
from app import app
import random
import os
from keras.applications.resnet50 import ResNet50
from keras.preprocessing import image
from keras.applications.resnet50 import preprocess_input, decode_predictions
import numpy as np


@app.route('/')



@app.route('/upload')
def upload_file2():
   return render_template('index.html')

@app.route('/uploaded', methods = ['GET', 'POST'])
def upload_file():
   if request.method == 'POST':
      f = request.files['file']
      path = os.path.join(app.config['UPLOAD_FOLDER'], f.filename)
      model= ResNet50(weights='imagenet')
      img = image.load_img(path, target_size=(224,224))
      x = image.img_to_array(img)
      x = np.expand_dims(x, axis=0)
      x = preprocess_input(x)
      preds = model.predict(x)
      preds_decoded = decode_predictions(preds, top=3)[0] 
      print(decode_predictions(preds, top=3)[0])
      f.save(path)
      return render_template('uploaded.html', title='Success', predictions=preds_decoded, user_image=f.filename)


@app.route('/index')
def index():
    return render_template('index.html', title='Home')

@app.route('/map')
def map():
    return render_template('map.html', title='Map')


@app.route('/map/refresh', methods=['POST'])
def map_refresh():
    points = [(random.uniform(48.8434100, 48.8634100),
               random.uniform(2.3388000, 2.3588000))
              for _ in range(random.randint(2, 9))]
    return jsonify({'points': points})


@app.route('/contact')
def contact():
    return render_template('contact.html', title='Contact')

Кажется, всехорошо в коде.Я проверил несколько раз.

Хорошо при запуске на локальном хосте на моей машине с Windows.

Я получаю http-код статуса 404 (страница не найдена).e 404 POST

Я пытался: на http://localhost:5000/ и http://localhost:5500/

Также я очистил свой браузер ...

1 Ответ

1 голос
/ 29 сентября 2019

Измените @ app.route ('/ uploaded', method = ['GET', 'POST']) на @ app.route ('/ upload.php', method = ['GET', 'POST'])

Или измените форму внешнего интерфейса для публикации в загруженном виде.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...