大约有 271 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0041 秒)
如何创建一个json对象 页面请求,要求用json 传参,我查阅文档,只有解析json 没法创建json var js :JSON = JSON; //js.stringify("a","1"); js.uname ="sdfsdf"; js.pss ="sdfsdf"; console.log(js); this.hr.send(url, js,"post","text"); 服务器端获取不到值只是 [object ...
来源: Laya_社区 发布时间: 20170509
...人 guoyiwei 相关问题 2.0一不小心删了bin目录下的某个场景json文件。。竟然无法自动生成了? TypeScript下HttpRequest发送Post请求有Bug? Laya["MiniAdpter"].nativefiles 在QQ小游戏中无法读取到 点击代码编辑模器 就提示无法打开代码编辑器 请...
来源: Laya_社区 发布时间: 20160726
....png"||data.url == "test/3.png"){ mark ++; console.log("------data.url:" + JSON.stringify(data.url)); if(mark == 4)//确认数据全部接收后 Laya.loader.load(["res/atlas/test.atlas", "test/1.png", "test/2.png", "test/3.png"],Laya.Handler.create(this,this.onComplete)); } }.bind(this)); }else { La...
来源: Laya_社区 发布时间: 20190307
HttpRequest如何发送JSON数据 发送JSON数据 var logReq = new laya.net.HttpRequest(); logReq.once(Laya.Event.COMPLETE,this,this.onComplete); logReq.send("http://127.0.0.1:3001/login", "username: 'lxd', password: 'lxd'", 'post', "json...
来源: Laya_社区 发布时间: 20170906
...助! public post(url: string, data: any, callback: (this: void, data: JSON) => void): void { let hr = new Laya.HttpRequest(); hr.once(Laya.Event.COMPLETE, this, (e: any): void => { callback(JSON.parse(hr.data)); }); hr.send(url...
来源: Laya_社区 发布时间: 20190829
最新版本IDE,如何获取http返回的json数据 参照官网例子写的http post请求,需要获取返回的json数据,但是一直获取不到,请教一下什么问题 //注册按钮响应函数 Login.prototype.onButtonLogin = function (){ console.log ('按了登录按钮') var xhr = ...
来源: Laya_社区 发布时间: 20180824
....onError); //数据传输失败后返回 //post数据的写法 console.log(JSON.stringify(request)); this.http.send(url,JSON.stringify(request), 'post', 'text',["content-type","application/json"]); } function onProgress(e) { console.log("run onProgress"); } function onComplete(e) { console.log("run ...
来源: Laya_社区 发布时间: 20180315
... http.success,[1,2,3]); hr.send("http://localhost:8082/hu_get",{}, "post","json",null); 回调方法: success:function (e,args) { console.log(e); //此行可以得到响应内容 console.log(args); //此行无法获取自定义参数? } 请问如何获取/传递 自定义参...
来源: Laya_社区 发布时间: 20180304
...ng, data?: any, method?: "get" | "post" | "head", responseType?: "text" | "json" | "xml" | "arraybuffer", headers?: string[]): void Defined in laya/net/HttpRequest.ts:46 发送 HTTP 请求。 Parameters url: string 请求的地址。大多数浏览器实施了一个同源安全策略,并且要求...
来源: Laya3.0_api 发布时间: 20231115
...send(data)可能需要改一下,我用XMLHttpRequest类send()的时候,json数据都是先用JSON.stringify()转化成字符串的,Laya的HttpRequest也是用的XMLHttpRequest类,应该也得先转化成字符串一下 附件 : --> 2017-04-26 添加评论 免费帖 --> 分享 微博 QZONE ...
来源: Laya_社区 发布时间: 20170426