我已经使用 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
如何提供上传的图片?