talk.js 359 B

1234567891011121314151617
  1. talk_parameter = {};
  2. function talk_list() {
  3. $('#result').html('');
  4. $.ajax({
  5. type : 'get',
  6. dataType : 'json',
  7. url : '../jaxrs/talk/list',
  8. contentType : 'application/json; charset=utf-8',
  9. xhrFields : {
  10. 'withCredentials' : true
  11. },
  12. crossDomain : true
  13. }).always(function(json) {
  14. $('#result').html(JSON.stringify(json, null, 4));
  15. });
  16. }