gpt4 book ai didi

python - Django View 测试

转载 作者:太空狗 更新时间:2023-10-30 00:52:01 24 4
gpt4 key购买 nike

我想弄清楚是否有一种快速的方法可以从 python 或 django shell 测试我的 django View 函数。我将如何着手实例化并传入虚假的 HTTPrequest 对象?

最佳答案

django.test.client 是正确的选择。

来自django docs

from django.test.client import Client
c = Client()
response = c.post('/login/', {'username': 'john', 'password': 'smith'})
response.status_code

关于python - Django View 测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6600039/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com