首页 > 解决方案 > 如何使用 Sanic 提供上传的图片?

问题描述

我已经使用 Sanic 在我的项目的某个目录中成功上传了图像。我用来上传图片的代码如下:

class ImageUploadAPI(HTTPMethodView):
    async def post(self, request):
        access_token = get_token_from_header(request.headers)
        token = decode_token(access_token)
        user_id = token.get('sub')
        upload_file = request.files.get('image')
        log_path = os.path.join(os.getcwd(), 'pictures')
        if not os.path.exists(log_path):
            os.makedirs(log_path)

        if not upload_file:
            res = {'status': 'no file uploaded'}
            return json(res, status=404)

    # if not valid_file_type(upload_file.name, upload_file.type):
    #     res = {'status': 'invalid file type'}
    #     return json(res, status=400)
        elif not valid_file_size(upload_file.body):
            res = {'status': 'invalid file size'}
            return json(res, status=400)
        else:
            file_path = f"{log_path}/{str(datetime.now())}.{upload_file.name.split('.')[1]}"
            await write_file(file_path, upload_file.body)
            await apps.db.users.update_one({'_id': ObjectId(user_id)}, {"$set": {
            "nid_front": upload_file.name
            }})
            return json({'status': 'image uploaded successfully'})

在这个过程中,我保存了upload_file.name一个user字段。现在要提供上传的图片,我已经访问了以下网址(就像我在本地服务器中一样http://localhost:8000/10414532_479247615552487_2110029531698825823_n.jpg 但它没有显示图像而是显示,

Error: Requested URL /10414532_479247615552487_2110029531698825823_n.jpg not found

如何提供上传的图片?

标签: python-3.xsanic

解决方案


我找到了阅读Sanic 静态文件的解决方案。我已使用蓝图选项将我上传的图像提供为:

static_file_bp = Blueprint('static', url_prefix='/files')
static_file_bp.static('/static', './uploads')

推荐阅读