get请求
function zhankai(id){/*函数:展开某个分类*/ var httpRequest = new XMLHttpRequest () ; httpRequest.open('GET',"/d/js/class/class"+id+"_newnews.js", true); httpRequest.send(); httpRequest.onreadystatechange = function () { if (httpRequest.readyState == 4 && httpRequest.status == 200) { var json = httpRequest.responseText;//获取到json字符串,还需解析 json=json.replace('document.write\("<ul>',""); json=json.replace('</ul>"\);',""); json=json.replace(/\\/g,"");/*替换反斜杠*/ document.getElementById("zhanwei_"+id).innerHTML=json; document.getElementById("zhanwei_"+id).previousElementSibling.previousElementSibling.className="jianhao"; } } }
post请求
function shengcheng(){ var httpRequest = new XMLHttpRequest() ; httpRequest.open('POST',"admin/function.pinyin.php", true); data = new FormData(); data.append("user", "张三"); httpRequest.send(data); httpRequest.onreadystatechange = function () { if (httpRequest.readyState == 4 && httpRequest.status == 200) { var str = httpRequest.responseText; document.getElementById("keywordspinyin").value=str; } } }
注意事项:
默认只能请求同一个域名,如果跨域就会出错,所以跨域的话可以增加协议头
或者在api接口的php文件里设置协议头.代码如下:
header("Access-Control-Allow-Origin:*");//解决跨域问题,允许任意域名请求此接口
相关推荐
c++ mFC gET请求和posT请求 (WinhTTprEquEsT)WinHttpRequest 的 dll位置: C:\\Windows\\System32\\winhttp.dll所以使用之前需要写上#import "C:\\\\Windows\\\\System32
原生javascripT获取指定的gET请求参数值代码如下:function 取get参数值(key){ var url = location.search; str = url.match(/\\?(\\S*)/)[1]; //文本_取右边 ?
原生的ajax的使用原生的ajax的使用:创建XMLHttpRequest对象的创建为了每次写Ajax的时候都节省一点时间, 可以把对象检测的内容打包成一个可复用的函数:function getHTTPObject(){
易语言 向程序发送命令时出现问题工具>>支持库>>易语言助手,取消勾选,然后就没问题了,这个是易语言助手的BUG,可以选择重装它
sEndmEssagE和posTmEssagE区别php错误500:该网页无法正常运作,目前无法处理此请求 hTTp Error 500
处理大数据的时候.最好加上set_time_limit(0);//设置网页超时时间无限制 ini_set('memory_limit', '-1');//设置内存无限
访问请求中的conTEnT-TypE需要根据对应的类型进行正确设置既然百度强调了.说明对蜘蛛系统来说.是一个重要的指标参考地址:https://ziyuan.baidu.com/college/courseinfo?id=1689&page=2参考第 2.2
zbp-&gT;gETlisTTypE()用法global $zbp; $sql = $zbp->db->sql->get() ->select('zbp_post') ->wher
zblog函数:gETarTiclElisT()GetArticleList() 的使用语法:$array=$zbp->GetArticleList($select,$where,$order,$limit,$option,$readtags
zblog $TEmplaTE-&gT;gETTags() 函数参数$this->templateTags['zbp'] = &$zbp; $this->templateTags['user'] = &am