Advertisement
Guest User

Untitled

a guest
Oct 13th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. axios.post('/saveBooks/add', {
  2. name: 'Flavio'
  3. });
  4.  
  5.  
  6. django
  7. elif action == 'add':
  8. formBook = BookForm(request.POST)
  9. if formBook.is_valid():
  10. formBook.save()
  11. return JsonResponse({'success': True})
  12. else:
  13. print(request.POST)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement