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

溫馨提示×

溫馨提示×

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

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

Python中Django框架單元測試之文件上傳測試的示例分析

發布時間:2021-07-24 13:41:09 來源:億速云 閱讀:169 作者:小新 欄目:開發技術

這篇文章主要為大家展示了“Python中Django框架單元測試之文件上傳測試的示例分析”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“Python中Django框架單元測試之文件上傳測試的示例分析”這篇文章吧。

具體如下:

Submitting files is a special case. To POST a file, you need only provide the file field name as a key, and a file handle to the file you wish to upload as a value. For example:

>>> c = Client()
>>> with open('test.jpg') as fp:
...   c.post('/account/avatar_upload/',{'avatar':fp})

測試文件上傳其實沒有什么特殊的,只需要指定后端接受請求數據的對應鍵值即可

(The name avatar here is not relevant; use whatever name your file-processing code expects.)在這里avatar是關聯的,對應著具體的后端處理程序代碼,eg:

class Useravatar(View):
  def __init__(self):
    self.thumbnail_dir = os.path.join(STATIC_ROOT, 'avatar/thumbnails')
    self.dest_dir = os.path.join(STATIC_ROOT, 'avatar/origin_imgs')
  @method_decorator(login_required)
  def post(self, request):
    nt_id = request.session.get('user_id', 'default')
    user = User.objects.get(pk=nt_id) if User.objects.filter(pk=nt_id).exists() else None
    avatarImg = request.FILES['avatar']
    if not os.path.exists(self.dest_dir):
      os.mkdir(self.dest_dir)
    dest = os.path.join(self.dest_dir, nt_id+"_avatar.jpg")
    with open(dest, "wb+") as destination:
      for chunk in avatarImg.chunks():
        destination.write(chunk)
    if make_thumb(dest,self.thumbnail_dir):
      avartaPath = os.path.join(STATIC_URL, 'avatar/thumbnails', nt_id + "_avatar.jpg")
    else:
      avartaPath = os.path.join(STATIC_URL, 'avatar/origin_imgs', nt_id + "_avatar.jpg")
    User.objects.filter(nt_id=nt_id).update(avatar=avartaPath)
    return render(request, 'profile.html', {'user': user})

Python中Django框架單元測試之文件上傳測試的示例分析

以上是“Python中Django框架單元測試之文件上傳測試的示例分析”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

井研县| 涪陵区| 合阳县| 侯马市| 五常市| 清河县| 延庆县| 昂仁县| 凤台县| 山东| 兴国县| 澜沧| 宿松县| 邓州市| 安顺市| 拉孜县| 砚山县| 扎囊县| 邵阳县| 濮阳市| 郑州市| 五大连池市| 诸城市| 浠水县| 蓬莱市| 乌拉特后旗| 阿克| 九龙城区| 渝北区| 彰武县| 汉中市| 商水县| 永清县| 东安县| 唐山市| 神农架林区| 大庆市| 东兴市| 富锦市| 峡江县| 洱源县|