文件名称:XHR-Object:一个小的XHR对象,可以轻松地执行XMLHttpRequests
文件大小:3KB
文件格式:ZIP
更新时间:2024-06-02 12:37:12
javascript xmlhttprequest ajax JavaScript
XHR对象 轻松执行XMLHttpRequests的最小XHR对象 如何 发送 POST示例 const data = { id : 1 , name : 'Rose' } ; const url = 'test.html' ; xhr . request ( 'POST' , url , data , ( res ) => { console . log ( res ) ; } ) ; GET示例 const data = { id : 1 , name : 'Rose' } ; const url = 'test.html' ; xhr . request ( 'GET' , url , data , ( res ) => { console . log ( res ) ; } ) ;
【文件预览】:
XHR-Object-master
----xhr.js(2KB)
----LICENSE(1KB)
----README.md(435B)