- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试向 API 发出发布请求,并将结果保存到我的数据库表之一中。
这是我的代码。
这是我的模型。 patientId 是 MyUser 表的 userId 的外键
class MyUser(AbstractUser):
userId = models.AutoField(primary_key=True)
gender = models.CharField(max_length=6, blank=True, null=True)
nric = models.CharField(max_length=9, blank=True, null=True)
birthday = models.DateField(blank=True, null=True)
birthTime = models.TimeField(blank=True, null=True)
class BookAppt(models.Model):
clinicId = models.CharField(max_length=20)
patientId = models.ForeignKey(MyUser, on_delete=models.CASCADE)
scheduleTime = models.DateTimeField(blank=True, null=True)
ticketNo = models.CharField(max_length=5)
status = models.CharField(max_length=20)
@csrf_exempt
def my_django_view(request):
if request.method == 'POST':
r = requests.post('http://127.0.0.1:8000/api/makeapp/', data=request.POST)
else:
r = requests.get('http://127.0.0.1:8000/api/makeapp/', data=request.GET)
if r.status_code == 201 and request.method == 'POST':
data = r.json()
print(data)
patient = request.data['patientId']
patientId = MyUser.objects.get(id=patient)
saveget_attrs = {
"patientId": patientId,
"clinicId": data["clinicId"],
"scheduleTime": data["created"],
"ticketNo": data["ticketNo"],
"status": data["status"],
}
saving = BookAppt.objects.create(**saveget_attrs)
return HttpResponse(r.text)
elif r.status_code == 200: # GET response
return HttpResponse(r.json())
else:
return HttpResponse(r.text)
print(data)
这是。
[31/Jan/2018 10:21:42] "POST /api/makeapp/ HTTP/1.1" 201 139
{'id': 22, 'patientId': 4, 'clinicId': '1', 'date': '2018-07-10', 'time': '08:00 AM', 'created': '2018-01-31 01:21:42', 'ticketNo': 1, 'status': 'Booked'}
File "C:\Django project\AppImmuneMe2\customuser\views.py", line 31, in my_django_view
patient = request.data['patientId']
AttributeError: 'WSGIRequest' object has no attribute 'data'
最佳答案
Django rest 框架有自己的 Request 对象。您需要使用 api_view装饰器在函数 View 中启用此请求类型。
关于Django 'WSGIRequest' 对象没有属性 'data',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48534366/
如果我像这样制作上下文处理器: def add_external(request): context = {"stext":"this is the info"} return con
我在 views.py 文件中的这个函数中遇到了这个错误。这很令人困惑,因为我不知道“WSGIRequest”是什么,也不知道它为什么给我带来问题。我知道我有一个名为“newUser”的变量,因为当我
我在发布到API时遇到了麻烦,无法完全弄清该错误指的是什么。如果重要的话,我使用的是Django REST,并包含了回溯。 if (repeat == false) { post_data =
我已经制作了一个这样的身份验证类: Token Authentication for RESTful API: should the token be periodically changed? re
我正在尝试使用 Django 创建登录表单。我正在创建一个 View 女巫将处理登录的获取和发布请求。 这是我如何设计它的: class Login(View): def get(self,r
我正在尝试在我的 django 项目中创建一个身份验证模块。但是当我打开我的网站 url 时出现此错误:'WSGIRequest' object has no attribute 'user' 我试图
我有时会在 process_response 方法中的自定义中间件中收到此错误。我有以下中间件列表: MIDDLEWARE_CLASSES = [ 'django.middleware.common.
当我在自定义中间件类的 process_view 中执行 request.set_cookie() 时,我不断收到此异常。这是我的 settings.py 中中间件类的顺序: MIDDLEWARE_C
我正在尝试向 API 发出发布请求,并将结果保存到我的数据库表之一中。 这是我的代码。 这是我的模型。 patientId 是 MyUser 表的 userId 的外键 class MyUser(Ab
我有 Django1.9 中间件类: class MyMiddleware(object): def process_request(self, request): token
我已经针对类似问题尝试过一些解决方案,但没有一个有效: 'WSGIRequest' object has no attribute 'session' 'WSGIRequest' object has
我想制作一个应用程序,它可以获取 Excel 文件并读取其内容,而不使用表单和模型。 我不断收到标题中的错误,我想知道错误是什么。 这是我的 HTML: {% csrf_token %}
我正在我的 views.py 中检查用户是否经过身份验证。然而,Django 不断抛出异常 WSGIRequest 对象没有属性“is_authenticated”。我阅读了 stackoverflo
我正在尝试使用 curl 的 put 请求向本地服务器发出 put 请求: curl -X PUT -H "Content-Type: application/json" -d '{"connid":
我明白了AttributeError("'WSGIRequest' 对象没有属性 'args'",)当我尝试调用这个电话时 GET/sign_s3/?s3_object_type=image/jpeg
有人知道怎么回事吗?我有一个 wsgi 错误。我想添加一些信息来评分,特别是日期。但是,我收到此 wsgi 错误: 错误: AttributeError at /polisy/add_payd
我正在制作一个网页。有两种看法。 索引 和详细信息。在索引中,我使用 response.set_cookie('key', key) 为用户设置 cookie,其中 response = HttpRe
关闭。这个问题是not reproducible or was caused by typos .它目前不接受答案。 这个问题是由于错别字或无法再重现的问题引起的。虽然类似的问题可能是on-topi
我正在尝试用 Django 制作一个非常基本的网站。现在你只需输入你的名字,它就会被保存。但即使我按照说明进行操作 here它抛出错误 'WSGIRequest' object has no attr
这个问题已经有答案了: Django - Where are the params stored on a PUT/DELETE request? (8 个回答) 已关闭 7 年前。 def my_v
我是一名优秀的程序员,十分优秀!