一、Ajax的原理
就是XMLHttpRequest对象。
二、为什么学习XHR?
有更多与服务器数据通信方式,了解Ajax内部。
三、XHR使用步骤
1.创建XHR对象
2.调用open方法,设置url和请求方法
3.监听loadend事件,接受结果
4.调用send方法,发起请求
四、具体示例
将省份列表展示出来
Document
const xhr=new XMLHttpRequest()
xhr.open('get','http://hmajax.itheima.net/api/province')
xhr.addEventListener('loadend',()=>{
console.log(xhr.response)
const data=JSON.parse(xhr.response)
console.log(data.list.join('
'))
document.querySelector('.my-p').innerHTML=data.list.join('
')
})
xhr.send服务器托管()
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.n服务器托管et
1、查看mysql版本、mysql状态 [root@k8s-129 mysql]# mysql -V mysql Ver 8.0.33 for Linux on x86_64 (MySQL Community Server – GPL) [root@k8s-1…