谕℃

Results 12 issues of 谕℃

- go版本: `1.17` - sdk版本: `v5.0.6` - 代码如下 ```go batchWriteReq := &tablestore.BatchWriteRowRequest{} for _, data := range datas { putRowChange := new(tablestore.PutRowChange) putRowChange.TableName = table_im_user_pool putPk := new(tablestore.PrimaryKey) putPk.AddPrimaryKeyColumn("pk1", "xxxx")...

- [ ] I'm sure this does not appear in [the issue list of the repository](https://github.com/arco-design/arco-design-vue/issues) ## Basic Info ## What are the similar cases of this feature 后台上传apk包,拷贝链接给别人下载使用 ##...

✨ Feature Request
💤 Inactive

![image](https://user-images.githubusercontent.com/41979509/225626024-0e5dc409-ee2f-4906-aaa5-43787daf1cbe.png) [源码](https://codepen.io/redgoose/pen/BaRaqEd)

- 同结构,属性类型不同 ```json { "aaa": { "bbb": { "a": 123 } }, "bbb": { "a": true } } ``` - 同结构,属性不同 ```json { "aaa": { "bbb": { "a": 123 }...

improve

```json { "a": -1231.323, "b": { "z": 31, "p": true, "123": "key是字符串" } } ``` 下面哪种转换比较合理呢...... ```go type RootObject struct { A float64 `json:"a"` B map[string]interface{} `json:"b"` } ``` ```go...

improve

**Original Data** ```json5 [[1],[true],[[2.3]]] ``` **Result** ```go type RootObject []interface{} ``` **Expect** ```go type RootObject [][]interface{} ```

bug

**Original Data** ```json5 { "a": 123, "b": "xxx", "c": [ [ 1, 2, 3 ], [ 1, null, 3 ] ] } ``` **Result** ```go type RootObject struct { A...

bug

1. 内置真实高度计算方法 2. 修改虚拟列表遍历算法,改成双指针判断,为了避免特殊情况(出现一个高度非常高独占一列的元素),必须针对每个元素进行判断 > 瀑布流元素整体是线性增加的,使用区间树算法并没有很好的解决元素多时计算可见元素的耗时问题 3. keep-alive路由切换时,滚动条的位置回到了0点 4. 加载了大量数据后resize窗口,会重新计算一遍所有项目的位置、高度 5. 优化下图耗时问题 ![image](https://github.com/lhlyu/vue-virtual-waterfall/assets/41979509/411dd05d-2d0d-44e9-9270-125b2aa6a840) - [keno-lee/vue-virt-list](https://github.com/keno-lee/vue-virt-list)研究这个库 - [v3-waterfall](https://github.com/gk-shi/v3-waterfall)