WizTeam / WizNoteLite

WizNote Lite Project
Other
640 stars 77 forks source link

vega-lite 语法图表在 win10 不能渲染,Android端却可以 #151

Open juejian opened 3 years ago

juejian commented 3 years ago

为知笔记 Lite win10 v2.1.1(最新版) 客户端 无法渲染 vega-lite 图表,页面显示 “Invalid Sequence Codes”。 但是 在Android 客户端,同一个文件却可以渲染。 开发者工具打开console,也没有任何错误或警告信息输出。 在 %appdata%\WizNote Lite 数据目录下的 log 文件也没有任何相关信息输出。 电脑网络正常,防火墙、杀毒软件等都已关闭,还是不能渲染,不知何故。

win10 无法渲染图示: win10-vega_lite Android 可以正常渲染: android-vega-lite

文件测试代码:

{
  "$schema": "https://sfccdn.gitee.io/schema/vega-lite/v4.json",
  "description": "A simple bar chart with embedded data.",
  "data": {
    "values": [
      {"a": "A", "b": 28}, {"a": "B", "b": 55}, {"a": "C", "b": 43},
      {"a": "D", "b": 91}, {"a": "E", "b": 81}, {"a": "F", "b": 53},
      {"a": "G", "b": 19}, {"a": "H", "b": 87}, {"a": "I", "b": 52}
    ]
  },
  "mark": "bar",
  "encoding": {
    "x": {"field": "a", "type": "ordinal", "axis": {"labelAngle": 0}},
    "y": {"field": "b", "type": "quantitative"}
  }
}