load_user_info.js 434 B

123456789101112131415
  1. function load_user_info(name) {
  2. var n_ver = document.getElementById('get_user_info');
  3. var url = "/api/user_info/" + encodeURI(name) + "?render=1";
  4. var xhr = new XMLHttpRequest();
  5. xhr.open("GET", url, true);
  6. xhr.send(null);
  7. xhr.onreadystatechange = function() {
  8. if(this.readyState === 4 && this.status === 200) {
  9. n_ver.innerHTML += JSON.parse(this.responseText)['data'];
  10. }
  11. }
  12. }