[]排坑:Laya.HttpRequest()无效
写了一个测试程序,简单获取网页源码并打印到控制台。然而,什么也获取不到
下面是代码
后面的完全没有反应也不报错。
下面是代码
console.log("开始测试");下面是运行结果,除了打印出了第一行。
var xhr = new Laya.HttpRequest();
xhr.http.timeout = 10000;//设置超时时间;
xhr.once(Event.COMPLETE, this, completeHandler);
xhr.once(Event.ERROR, this, errorHandler);
xhr.on(Event.PROGRESS, this, processHandler);
xhr.send("http://www.baidu.com", "", "get", "text");
function processHandler(data) {
console.log(data);
}
function errorHandler(data) {
console.log(data);
}
function completeHandler(e) {
console.log(e);
}
后面的完全没有反应也不报错。
没有找到相关结果
已邀请:
要回复问题请先登录
2 个回复
qian
赞同来自:
你把你的项目传一下我看看
shaotianhk
赞同来自:
我弃用了这个封装类,直接用js原生的XMLHttpRequest来实现,没有发现问题