XHR
model = {
property_a: 'hello',
property_b: 'world'
};
xhr=jQuery.ajax({type:'post', dataType:'json', url:'http://localhost:8000/api/...', data:JSON.stringify(model),'contentType':'application/json'})
XHR
model = {
property_a: 'hello',
property_b: 'world'
};
xhr=jQuery.ajax({type:'post', dataType:'json', url:'http://localhost:8000/api/...', data:JSON.stringify(model),'contentType':'application/json'})