AJAX,Axios,JSON简单了解
AJAX, Axios 和 JSON 都是与网络请求和数据处理有关的技术。
- AJAX (Asynchronous JavaScript and XML):
AJAX 是一种在无需重新加载整个网页的情况下,与服务器交换数据的技术。它可以使网页实现异步更新。
JavaScript 通过创建一个 XMLHttpRequest 对象来发起 AJAX 请求。
var xhr = new XMLHttpRequest();
xhr.open("GET", "url", true);
xhr.onreadystatechange = function () {
if (xhr.readyState == 4 && xhr.status == 200) {
console.log(xhr.responseText);
}
};
xhr.send();
- Axios:
Axios 是一个基于 promise 的 HTTP 库,它在浏览器和 node.js 中都可以使用。
Axios 发送 GET 请求的例子:
axios.get('url')
.then(function (response) {
console.log(response.data);
})
.catch(function (error) {
console.log(error);
});
- JSON:
JSON 是一种轻量级的数据交换格式,易于阅读和编写,同时也易于机器解析和生成。
JSON 的示例:
{
"name": "John",
"age": 30,
"city": "New York"
}
在 JavaScript 中解析 JSON 的例子:
var obj = JSON.parse('{"name":"John", "age":30, "city":"New York"}');
console.log(obj.name); // John
以上就是 AJAX, Axios, JSON 的简单了解和使用示例。
评论已关闭