91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Django如何接收照片儲存文件

發布時間:2021-06-16 15:17:26 來源:億速云 閱讀:166 作者:小新 欄目:開發技術

這篇文章主要介紹Django如何接收照片儲存文件,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

后端:

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:

<form method="post" action="/upload/" enctype="multipart/form-data" target="ifm1">
    <input type="file" name="send"/>

    <input type="submit" value="Form表單提交"/>
  </form>

下面在看下在Django中接收文件并存儲

首先是一個views函數的例子 

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')

這是一個簡單的接收客戶端上傳的頭像文件并保存的例子,應該看過這個就已經大體會使用接收文件了

但是這里的filename是客戶端上傳的文件名,也可能是像下面這樣的表單 

<input type="file" name="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如何接收照片儲存文件”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

阳曲县| 惠来县| 连云港市| 泰宁县| 上饶市| 宁德市| 邹城市| 青铜峡市| 延安市| 郧西县| 汕尾市| 友谊县| 秭归县| 广饶县| 施秉县| 渝北区| 泾川县| 黑山县| 雷山县| 萍乡市| 舞钢市| 柘城县| 宣汉县| 鸡东县| 凌海市| 中牟县| 军事| 长阳| 海兴县| 沁水县| 林芝县| 甘德县| 西林县| 江都市| 昔阳县| 仁化县| 滁州市| 静宁县| 资兴市| 阜平县| 内江市|