Хочу отправить post запрос, но почемуто возвращает мне 400 стр. и в response приходит This field is required
post.vue
methods: {
sendMessage () {
let options = {
params: {
title: this.title,
body: this.textField,
article: this.article.id
},
headers: {
'Content-Type': 'application/json'
},
}
HTTP.post('/comments/', options)
.then(response => {
this.$message({
type: 'success',
message: 'Ваше комментарий ждет утверждений'
})
console.log(response)
})
.catch(err => {
console.log(err)
})
},
views.py
class CommentsView(viewsets.ModelViewSet):
queryset = Comments.objects.all()
serializer_class = CommentSerializer