[]HttpRequest感觉没有发成功

官网复制过来的代码,加了一些控制台输出,但是没有看到请求或者输出。是不是我哪里用得不对?代码如下
//初始化引擎
Laya.init(1136,640);
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("https://www.baidu.com","","get","text");
function processHandler(data){
console.log(data);
console.log("processHandler");
}
function errorHandler(data){
console.log("errorHandler");
}
function completeHandler(e){
console.log("completeHandler");
}
已邀请:

阿耀

赞同来自: 138*****161 zzh

添加的时间监听参数错了,xhr.once(Event.COMPLETE,this,completeHandler);
xhr.once(Event.ERROR,this,errorHandler);
xhr.on(Event.PROGRESS,this,processHandler);
这里应该改成
xhr.once(Laya.Event.COMPLETE,this,completeHandler);
xhr.once(Laya.Event.ERROR,this,errorHandler);
xhr.on(Laya.Event.PROGRESS,this,processHandler);官方demo应该是在顶部声明了 var Event=Laya.Event;

要回复问题请先

商务合作
商务合作