storm

Results 5 comments of storm

> I actually had this happen to me. json file was wiped. Nothing critical in there, but now I've got a corrupt file! it is happen to me too!

When the slave station sends data to the master station, i think it just calling the write register API?

目前没有在mac上尝试的条件,可以确定得是在windows上会出现这个问题。 目前是否有方法避过这个问题? 或者避开某种用法可以规避此问题

抱歉暂时没有找到可复现的示例代码,因为我也不清楚什么原因造成的,上方的截图是程序不间断运行了两个月的结果。 但是我可以提供以下信息,希望对定位问题有帮助 ```html ``` table的 props 中没有特殊的使用, 但我在插槽中使用了 展开行 expandedRow ```vue ``` 展开行展开的是一个 表格,表格中也仅仅是数据的展示 目前还看到一个信息 观察到 tableWidth 的 dep 多达 39938 个, 这39938 个基本上都是由一处 computed 产生,此处可能存在内存泄漏 ![Snipaste_2024-06-07_11-37-33](https://github.com/Tencent/tdesign-vue-next/assets/31079748/c5a6304d-13e0-48da-afff-66c614083f12) 其代码可能在 https://github.com/Tencent/tdesign-vue-next/blob/832bdc20e3897c9f934ffe67cac36018445816cc/src/table/base-table.tsx#L503 这一行...

> 我也遇到了一样的问题,开发环境expandedRow一行数据会render 5次,发到生产环境会无限render update:发现问题的原因是expandedRow执行时按照行数据修改上下文导致,由于上下文是所有数据共用的,所以导致无限循环,解决方案是给行数据创建独立的上下文,不要修改公共上下文 ps:个人认为这是expandedRow设计有缺陷 请教下如何 ”创建独立的上下文“