Thursday, October 21, 2021

How to fetch data from server using XHR method

const xhttp = new XMLHttpRequest()

xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
const data = JSON.parse(this.responseText)
// handle the response that is saved in variable data
}
}

xhttp.open('GET', '/data.json', true)
xhttp.send()

No comments:

Post a Comment

methods available in Dapper

  Dapper is a micro ORM library for .NET and .NET Core applications that allows you to execute SQL queries and map the results to objects. D...