這篇文章主要介紹Django如何接收照片儲存文件,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!
專注于為中小企業(yè)提供網(wǎng)站設(shè)計(jì)、成都做網(wǎng)站服務(wù),電腦端+手機(jī)端+微信端的三站合一,更高效的管理,為中小企業(yè)屏南免費(fèi)做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動了1000+企業(yè)的穩(wěn)健成長,幫助中小企業(yè)通過網(wǎng)站建設(shè)實(shí)現(xiàn)規(guī)模擴(kuò)充和轉(zhuǎn)變。后端:
from rest_framework.views import APIView from car import settings from django.shortcuts import render, redirect, HttpResponse from dal import models from django.http import JsonResponse import os BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) class Image(APIView): def post(self, request): file_obj = request.FILES.get('send',None) print("file_obj",file_obj.name) file_path = os.path.join(BASE_DIR, 'media', 'user/img', file_obj.name) print("file_path", file_path) with open(file_path, 'w') as f: for chunk in file_obj.chunks(): f.write(chunk) message = {} message['code'] = 200 return JsonResponse(message)
前端ajax:
下面在看下在Django中接收文件并存儲
首先是一個views函數(shù)的例子
def get_user_profiles(request): if request.method == 'POST': myFile = request.FILES.get("filename", None) if myFile: dir = os.path.join(os.path.join(BASE_DIR, 'static'),'profiles') destination = open(os.path.join(dir, myFile.name), 'wb+') for chunk in myFile.chunks(): destination.write(chunk) destination.close() return HttpResponse('ok')
這是一個簡單的接收客戶端上傳的頭像文件并保存的例子,應(yīng)該看過這個就已經(jīng)大體會使用接收文件了
但是這里的filename是客戶端上傳的文件名,也可能是像下面這樣的表單
如果不知道固定上傳的文件名,想要客戶端上傳什么文件就以其上傳的名字命名可以這么寫
def get_user_profiles(request): if request.method == 'POST': if request.FILES: myFile =None for i in request.FILES: myFile = request.FILES[i] if myFile: dir = os.path.join(os.path.join(BASE_DIR, 'static'),'profiles') destination = open(os.path.join(dir, myFile.name), 'wb+') for chunk in myFile.chunks(): destination.write(chunk) destination.close() return HttpResponse('ok')
不過這個是通過輸出request.FILES試出來的,不知道是否有更合適的方法。
以上是“Django如何接收照片儲存文件”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!