原生js实现ajax
Posted gaojunshan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了原生js实现ajax相关的知识,希望对你有一定的参考价值。
自从javascript有了各种框架之后,比如jquery,使用ajax已经变的相当简单了。但是有的项目不需要加载jquery这种庞大的js插件,只需要实现ajax即可。所以我们就需要自己用原生JS实现ajax
ajax:一种请求数据的方式,不需要刷新整个页面;
ajax的技术核心是 XMLHttpRequest 对象;
ajax 请求过程:创建 XMLHttpRequest 对象、连接服务器、发送请求、接收响应数据;
<script type="text/javascript"> function ajax(opt) { opt = opt || {}; opt.method = opt.method.toUpperCase() || ‘POST‘; opt.url = opt.url || ‘‘; opt.async = opt.async || true; opt.data = opt.data || null; opt.success = opt.success || function () {}; var xmlHttp = null; if (XMLHttpRequest) { xmlHttp = new XMLHttpRequest(); } else { xmlHttp = new ActiveXObject(‘Microsoft.XMLHTTP‘); } var params = []; for (var key in opt.data){ params.push(key + ‘=‘ + opt.data[key]); } var postData = params.join(‘&‘); if (opt.method.toUpperCase() === ‘POST‘) { xmlHttp.open(opt.method, opt.url, opt.async); xmlHttp.setRequestHeader(‘Content-Type‘, ‘application/x-www-form-urlencoded;charset=utf-8‘); xmlHttp.send(postData); } else if (opt.method.toUpperCase() === ‘GET‘) { xmlHttp.open(opt.method, opt.url + ‘?‘ + postData, opt.async); xmlHttp.send(null); } xmlHttp.onreadystatechange = function () { if (xmlHttp.readyState == 4 && xmlHttp.status == 200) { opt.success(xmlHttp.responseText); } }; } </script>
示例:
<script> ajax({ method: ‘POST‘, url: ‘login.php‘, data: { code:‘p001‘,name:‘李四‘ }, success: function (response) { console.log(response); } }) </script>
以上是关于原生js实现ajax的主要内容,如果未能解决你的问题,请参考以下文章