大约有 180 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0050 秒)
...自: private onClick(e: Laya.Event) { this._data = [1]; this.list.array = this._data; this.list.y = 220; this.list.height = 300; } 代码这么写就好了 2019-09-19 0 1 分享 微博 QZONE 微信 Laya新用户 赞同来自: 这2行换位置也可以解决问题 2019-09-19 0 0 分享...
来源: Laya_社区 发布时间: 20190919
...loader如何强制加载一个文件,避免浏览器的缓存 我用list.array=Array;数据全部插进去数组里了,但是list中没有完全展示数组数据,只展示了其中的图片部分,数组能console出,那个list中的数据也存在,但没渲染出。 问题状态 最新...
来源: Laya_社区 发布时间: 20171018
list问题 我使用this.taskShowMainList.array = data,创建了一个list,data的数据长度是10,但是在打印console.log(this.taskShowMainList.cells)的时候,发现cells的长度只有8, 这样我就并不能获得list下的所有生成的item。我想获取list下生成的所有...
来源: Laya_社区 发布时间: 20190723
...{ ///接收到数据触发函数 this._msgByte.clear(); this._msgByte.writeArrayBuffer(msg);//把接收到的二进制数据读进byte数组便于解析。 this._msgByte.pos = 0;//设置偏移指针; } 发现一个问题就是如果数据传输比较平凡会出现 SOCKET.input里面的缓存...
来源: Laya_社区 发布时间: 20171214
...erHandler = new Handler(this, updateItem); Laya.stage.addChild(list); list.array = effList; } function updateItem(cell, index) { console.log(cell.dataSource); cell.setImg(cell.dataSource); } function onSelect(index) { console.log("当前选择的索引:" + index); } 我想实现的效果是 ...
来源: Laya_社区 发布时间: 20170627
...es/ui/listskins/4.jpg"); data.push("../../res/ui/listskins/5.jpg"); } list.array = data; } function updateItem(cell, index) { cell.setImg(cell.dataSource); } function onSelect(index) { console.log("当前选择的索引:" + index); } })(); 2018-07-25 0 0 分享 微博 QZONE 微信 为什么...
来源: Laya_社区 发布时间: 20180724
...this, this.onMouse) } onOpened(param: any) { super.onOpened(param); let imgArray = ; for (let i = 1; i < 7; i++) { imgArray.push(`ui/bg_help_0${i}.png`) } this.list_rule.array = imgArray; } public updateItem(cell: Laya.Box, index: number): void { let img_rule = cell.getChildByName("img_rule") as ...
来源: Laya_社区 发布时间: 20170215
...ui/listskins/4.jpg"); // data.push("../../res/ui/listskins/5.jpg"); } list.array = data; } function updateItem(cell, index) { cell.label.text = cell.dataSource.lb; cell.input.text = cell.dataSource.value; // cell.setImg(cell.dataSource); } function onSelect(index) { console.log("当前选择的索...
来源: Laya_社区 发布时间: 20180312
...es/ui/listskins/4.jpg"); data.push("../../res/ui/listskins/5.jpg"); } list.array = data; } function updateItem(cell, index) { cell.setImg(cell.dataSource); } function onSelect(index) { console.log("当前选择的索引:" + index); } })(); 2018-07-31 添加评论 免费帖 --> 分享 微博 ...
来源: Laya_社区 发布时间: 20180731
...动生成了? TypeScript下HttpRequest发送Post请求有Bug? 我用list.array=Array;数据全部插进去数组里了,但是list中没有完全展示数组数据,只展示了其中的图片部分,数组能console出,那个list中的数据也存在,但没渲染出。 HttpRequest感觉没...
来源: Laya_社区 发布时间: 20170906