因为项目的原因,博主需要使用python以及django,写这篇文章用来记录本人遇到的技术点及内在逻辑结构。
项目的创建就不详细说了,我用的是pycharm中的django,便于进行项目管理。
python manage.py startapp test01
用来创建test01 app
在test01中创建一个文件夹用来放服务器端的文件,我命名为serverFile
修改项目的url.py增加对test01的路径
from django.contrib import admin
from django.urls import path
from test01 import views
urlpatterns = [
path('upload/',views.upload)
]
当我们在浏览器中输入/upload/路径服务器就会调用views中的upload方法
4. 修改app中的views.py,实现方法
import os
import json
from django.shortcuts import render
from django.http import HttpResponse
def upload(request):
# 请求方法为POST时,进行处理
if request.method == "POST":
# 获取上传的文件,如果没有文件,则默认为None
File = request.FILES.get("myfile", None)
if File is None:
return HttpResponse("没有需要上传的文件")
else:
# 打开特定的文件进行二进制的写操作
# print(os.path.exists('/temp_file/'))
with open("./test01/serverFile/%s" % File.name, 'wb+') as f:
# 分块写入文件
for chunk in File.chunks():
f.write(chunk)
bytes = list(read_into_buffer("./test01/serverFile/%s" % File.name))
length = len(bytes)
data = {
"length": length,
"bytes": bytes
}
#生成一个json包含长度和字节
content = json.dumps(data)
return HttpResponse(content)
else:
return render(request, "index.html")
#按字节读取文件并放到buf中
def read_into_buffer(filename):
buf = bytearray(os.path.getsize(filename))
with open(filename, 'rb') as f:
f.readinto(buf)
f.close()
return buf
上传文件