dataMappings.js 403 B

123456789101112131415161718
  1. dataMappings_parameter = {};
  2. function dataMappings_get() {
  3. $('#result').html('');
  4. $('#content').html('');
  5. $.ajax({
  6. type : 'get',
  7. dataType : 'json',
  8. url : '../jaxrs/datamappings',
  9. contentType : 'application/json; charset=utf-8',
  10. xhrFields : {
  11. 'withCredentials' : true
  12. },
  13. crossDomain : true
  14. }).done(function(json) {
  15. $('#result').html(JSON.stringify(json, null, 4));
  16. });
  17. }