zhumengyue
zhumengyue
Hi, i found a case that when the last column does not have a header, it can not be parsed. The codes look like this ``` const data = "user_id,name\r\n1234,xxx,extra\r\n";...
for example, i have an interface `UserInfo` whose `extra` property is another interface, and there are some annotations: ```ts interface AddressInfo { /** * @default xxx */ address: string; }...
场景: 一个数据量较大的目录数据接口,期望做缓存。用户可以主动强刷新,或在某些场景下必须强刷新(比如新增了文件、文件夹),此时不希望接口走缓存,但期望可以更新缓存数据,以便下次再走缓存时可以拿到最新的数据。 期望: 提供一个类似 forceUpdate 的属性,表示是否更新缓存