原生JS的HTTP请求

Posted 彭蒙善

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了原生JS的HTTP请求相关的知识,希望对你有一定的参考价值。

ar xhr = new XMLHttpRequest();

        xhr.onreadystatechange = function(){

 

            if( xhr.readyState == 4){

 

                if( xhr.status >= 200 && xhr.status < 300 || xhr.status == 304){

 

                    info.innerhtml = xhr.responseText;

                }

            }

        };

        xhr.open("get","test.txt",true);

        xhr.send(null);

以上是关于原生JS的HTTP请求的主要内容,如果未能解决你的问题,请参考以下文章

JS原生Ajax请求

php下的原生ajax请求

不引入外部包使用原生js发送请求的几种方式

原生js的ajax请求

body-parser Node.js(Express) HTTP请求体解析中间件

原生js的ajax请求