curlconverter/test/fixtures/javascript-jquery/commented_json_with_session.js

14 lines
272 B
JavaScript

$.ajax({
url: 'http://localhost:28139',
crossDomain: true,
method: 'post',
headers: {
'Accept': 'application/json'
},
contentType: 'application/json',
// data: '{ }',
data: JSON.stringify({})
}).done(function(response) {
console.log(response);
});