Empecé a aprender xml y tengo un problema con XMLHttpRequest. ¿Alguien puede decirme qué estoy haciendo mal? ¿Por qué esto funciona?
function load_hendler() { if (this.status == 200 && this.readyState == 4) { console.log(this.responseXML) } } const xhr = new XMLHttpRequest() xhr.onload = load_hendler xhr.open("GET", "./students.xml") xhr.send()...pero esto no
function xhr_general_request() { const xhr = new XMLHttpRequest() xhr.onload = () => { if (xhr.status == 200 && xhr.readyState == 4) { console.log(this.responseXML) } } xhr.open("GET", "./students.xml") xhr.send() }