Bruce

Results 3 comments of Bruce

not only visualization, but also text result display supporting? text result can be read/copied by users

## 问题原因 基础库 nebula-go 在做时间转换时,将标准时间转换为了本地时间字符串 `2023-01-01T00:00:01.000000` 格式,忽略了 TZD(time zone designator) 时区标志 https://github.com/vesoft-inc/nebula-go/blob/master/value_wrapper.go#L347 假如 graphd/meta/storage 默认采用的是 UTC+00:00 的零时区时间,而浏览器所在系统采用的是东八区(UTC+08:00)时间,缺少 TZD 的字符串 `2023-01-01T00:00:01.000000` 传递到浏览器后,会默认被当成浏览器本地时间处理(见 [IOS 8601](https://en.wikipedia.org/wiki/ISO_8601#Local_time_(unqualified)) 规范),和真实的东八区时间相差 8 个小时。 ## 处理方法 1. 可通过修改...

尝试将 golang 版本降级到 1.18 或者 1.20 试下?