V5版本使用官方示例出现报错 #6301
-
使用官方示例并使用“force-atlas2”等布局时,存在报错,直接无法渲染出来: 使用代码为官方示例代码: import { Graph } from '@antv/g6'; fetch('https://gw.alipayobjects.com/os/antvdemo/assets/data/relations.json')
}); 目前测试下来只有d3-force布局不报错,我是直接在v4基础上直接安装v5进行升级的,是否跟这个有关? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
官网文档在线运行环境直接修改参数可能会有点问题,尤其是不同版本 api 已经变化了很多。 在本地跑 demo 试试。 |
Beta Was this translation helpful? Give feedback.
-
官网 我在 排查思路: 1、重装依赖。 ## 使用 npm 重新安装 @antv/g6
npm uninstall @antv/g6
npm install @antv/g6
## 使用 yarn 重新安装 @antv/g6
yarn remove @antv/g6
yarn add @antv/g6 |
Beta Was this translation helpful? Give feedback.
官网
Force Atlas 2
示例(正常):https://g6-next.antv.antgroup.com/zh/examples/layout/force-directed/#atlas2我在
(antv/g6 v5.0.20)
本地使用force-atlas2
布局也没任何 warning信息。排查思路:
1、重装依赖。