You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
在 2020年12月17日,下午5:08,honguangli ***@***.***> 写道:
您好,我下载了这份代码,似乎您还没有实现完官方案例所提供的功能。
目前我发现了一些问题
1)插入图片,您定义的数据结构似乎有些问题。
model.Sheet.Images字段您定义为“interface{}”类型,这并不准确,并将导致luckysheet无法正确处理图片功能,我认为应该定义为map[string]*Image类型,这与luckysheet所引用的images结构才是一致的。
另外,model.Sheet结构中还有一个与Images类似命名的Image字段,目前我还没发现它的作用是什么?
2)websocket协同方面,您似乎忽略了心跳包类型?当前端发送“rub”消息时go代码将其广播给了所有协同用户,这导致前端json解析时异常。您应该捕获它并消费掉。
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or unsubscribe.
您好,我下载了这份代码,似乎您还没有实现完官方案例所提供的功能。
目前我发现了一些问题
1)插入图片,您定义的数据结构似乎有些问题。
model.Sheet.Images字段您定义为“interface{}”类型,这并不准确,并将导致luckysheet无法正确处理图片功能,我认为应该定义为map[string]*Image类型,这与luckysheet所引用的images结构才是一致的。
另外,model.Sheet结构中还有一个与Images类似命名的Image字段,目前我还没发现它的作用是什么?
2)websocket协同方面,您似乎忽略了心跳包类型?当前端发送“rub”消息时go代码将其广播给了所有协同用户,这导致前端json解析时异常。您应该捕获它并消费掉。
The text was updated successfully, but these errors were encountered: