大约有 38 项符合查询结果, 库内数据总量为 31,560 项。 (搜索耗时: 0.0051 秒)
...的语言服务(2.1.5)。可能出现不一致的编译错误 TypeScript下HttpRequest发送Post请求有Bug? Laya 安卓端 在服务端运行指令layadcc ./ 后进不去,提示 assetId is old 和 init dcc fail。然后过五六个小时后才不会报这个错。。才能进去 服务端用什...
来源: Laya_社区 发布时间: 20161214
...用父类构造函数 this.dlg; } function connect() { var hr = new Laya.HttpRequest(); hr.once(Event.PROGRESS, this, onHttpRequestProgress); hr.once(Event.COMPLETE, this, onHttpRequestComplete); hr.once(Event.ERROR, this, onHttpRequestError); hr.send('http://111.73.45.19/index.php/Tgy/tgyPost', 'us...
来源: Laya_社区 发布时间: 20170215
...显示,请问有知道是什么原因的吗?~~~~~~~~~~~~~ TypeScript下HttpRequest发送Post请求有Bug? 如何通过命令行工具构建和发布项目 unity中的模型导出后在laya中显示不正常 请问一下 ProtoBuf 支持 as3 版本吗? 1.7.20beta有bug,帧属性面板打不开...
来源: Laya_社区 发布时间: 20170416
...下例子。 ```java package { import laya.events.Event; import laya.net.HttpRequest; import laya.utils.Browser; public class Main { public function Main() { //初始化引擎 Laya.init(500,500); var httpreq:HttpRequest = new HttpRequest(); httpreq.on(Event.COMPLETE,this,this.completeHandler); httpr...
来源: Laya2.0_文档 发布时间: 20210715
...eo; constructor() { //初始化引擎 Laya.init(500,500); var httpreq:Laya.HttpRequest = new Laya.HttpRequest(); httpreq.on(Laya.Event.COMPLETE,this,this.completeHandler); httpreq.on(Laya.Event.ERROR,this,this.errorHandler); httpreq.send("demo1.js"); } private completeHandler(e:any):void{ var script...
来源: Laya3.0_文档 发布时间: 20251010
...eo; constructor() { //初始化引擎 Laya.init(500,500); var httpreq:Laya.HttpRequest = new Laya.HttpRequest(); httpreq.on(Laya.Event.COMPLETE,this,this.completeHandler); httpreq.on(Laya.Event.ERROR,this,this.errorHandler); httpreq.send("demo1.js"); } private completeHandler(e:any):void{ var script...
来源: Laya2.0_文档 发布时间: 20210715
...```typescript //初始化引擎 Laya.init(500,500); var httpreq = new Laya.HttpRequest(); httpreq.on(Laya.Event.COMPLETE,this,completeHandler); httpreq.on(Laya.Event.ERROR,this,errorHandler); httpreq.send("demo1.js"); function completeHandler(e){ var script = Laya.Browser.document.createElement("scr...
来源: Laya2.0_文档 发布时间: 20210714
...7) at EventHandler.__proto.runWith (libs/laya.core.js:1627) at HttpRequest.__proto.event (libs/laya.core.js:1384) at HttpRequest.__proto.complete (libs/laya.core.js:15788) at HttpRequest.__proto._onLoad (libs/laya.core.js:15752) 加载场景的时候报了这个错误。不...
来源: Laya_社区 发布时间: 20170428