欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

ajax代理程序,自动判断字符编码

程序员文章站 2022-03-14 10:37:19
由于ajax在跨域的访问上有问题,目前最好的方法是做代理.写了个代理程序和心得 为了做ajax的代理,研究了下服务器端的xmlhttp并和客户端的ajax中的xmlhttp...
由于ajax在跨域的访问上有问题,目前最好的方法是做代理.写了个代理程序和心得
为了做ajax的代理,研究了下服务器端的xmlhttp并和客户端的ajax中的xmlhttp做了个比较,后台代码是asp的
服务器端的xmlhttp也就是asp小偷程序,我把代码改成了javascript.
1.在服务器端的xmlhttp.open("get",url,false)异步必须是关闭的,而客户端的异步是打开的,这个很好理解.
2.在服务器端的xmlhttp.responsebody 这里用的是responsebody而不是responsetext或responsexml,一开始我是用responsetext,但在函数

bytestobstr转换编码的时候提示错误,经过比较发现其他的asp小偷程序里的代码都是responsebody,分析后,发现body返回来的是二进制数据而

不是像responsetext或responsexml那样返回字符或dom对象.
ajax的asp代理函数介绍
send_request(url) ,url为地址 
服务器端代码如下带自动判断所有字符编码,已测试 日语 韩语 繁体
复制代码 代码如下:

<%@language="javascript" codepage="65001"%>
<!doctype html public "-//w3c//dtd html 4.01 transitional//en" "http://www.w3.org/tr/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>xmlhttp</title>
</head>
<% 
server.scripttimeout=9999999;
function send_request(url) {
    var codedtext;
    http_request = server.createobject("microsoft.xmlhttp");
    http_request.open("get",url,false);
    http_request.send(null);
    if (http_request.readystate == 4){
        //自动判断编码开始
        var charresult = http_request.responsetext.match(/charset=(\s+)\">/i);
        if (charresult != null){
        var cset = charresult[1];
        }else{cset = "gb2312"}//对获取不到的网站采用gb2312编码,可自行更改

//自动判断编码结束
        codedtext = bytestobstr(http_request.responsebody,cset);
        }else{
        codedtext = "erro";
        }
    return(codedtext);
}

function bytestobstr(body,cset){
var objstream;
objstream = server.createobject("adodb.stream");
objstream.type = 1;
objstream.mode = 3;
objstream.open();
objstream.write(body);
objstream.position = 0;
objstream.type = 2;
objstream.charset = cset;
bytestobstr = objstream.readtext;
objstream.close;
return(bytestobstr);
}

%>
<body>
<% response.write(send_request("http://www.daum.net")) %>
</body>
</html>