Guest User

Untitled

a guest
Jul 23rd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. var data = JSON.stringify({
  2. "user": "/api/v1/user/1",
  3. "title": "My New Blog Post",
  4. "body": "Something interesting should be here..."
  5. });
  6.  
  7. $.ajax({
  8. url: '/api/v1/entry/',
  9. type: 'POST',
  10. contentType: 'application/json',
  11. data: data,
  12. dataType: 'json',
  13. processData: false
  14. })
Add Comment
Please, Sign In to add comment