Henry X
Henry X
### Problem ``` ➜ jupyter --version Selected Jupyter core packages... IPython : 7.30.1 ipykernel : 5.5.5 ipywidgets : not installed jupyter_client : 7.1.0 jupyter_core : 4.9.1 jupyter_server : 1.13.1 jupyterlab...
### Describe the bug **文档中写的是 extendedNodeName, 代码中是 extendShapeType, typeName => shapeType 也是** https://g6.antv.vision/zh/docs/manual/middle/elements/nodes/custom-node ### Your Example Website or App 1 ### Steps to Reproduce the Bug or Issue 1 ###...
### Describe the bug 参考文档https://g6.antv.vision/zh/docs/manual/middle/elements/nodes/react-node ### Your Example Website or App 1 ### Steps to Reproduce the Bug or Issue 1 ### Expected behavior 正常使用 ### Screenshots or Videos _No...
### Describe the bug FULL 变量没用到, 应该是一个字符串 https://g6.antv.vision/zh/docs/manual/middle/elements/nodes/jsx-node ### Your Example Website or App 1 ### Steps to Reproduce the Bug or Issue 1 ### Expected behavior 文档更新 ### Screenshots...
### Describe the bug 如果定义节点的时候返回的是按 group 的 ``` const mainGroup = group.addGroup({ id: 'main-group', }); const keyShape = mainGroup.addShape('rect', { attrs: { x: 0, y: 0, width: 100 + 60...
### Describe the bug ![Uploading image.png…]() ### Your Example Website or App 0 ### Steps to Reproduce the Bug or Issue 0 ### Expected behavior 进群 ### Screenshots or Videos...
### 🐛 bug 描述 [详细地描述 bug,让大家都能理解] 对双折线图 - 多折线进行 bursh-x 后, 双击恢复发现折现到图外去了 ### 📷 复现步骤 [清晰描述复现步骤,让别人也能看到问题] 在 demo 示例这里 https://charts.ant.design/zh/examples/dual-axes/dual-line#dual-multi-line 配置增加一行代码 `interactions: [{ type: 'brush-x' }],` 原图形 鼠标对图形进行一个 x 轴的刷选...
### What happened? copy header then delete `##`, still render h2 ### Reproduce the Bug 1 ### Expected Behavior render text ### Screenshots _No response_ ### Desktop Platform Information logseq...
### Reproduction link [](https://codesandbox.io/s/dong-tai-zeng-jian-biao-dan-xiang-antd-4-24-4-forked-57dn5x?file=/demo.tsx:911-929) ### Steps to reproduce 有两个 Form Item 值, 一个是单选组RadioGroup, 一个是名称列表Form.List. 期望切换 RadioGroup 的时候, 如果值是 ALLOW 时, 遇到 name list 是空的, 则在 names List 中初始化一个...
这些方法的第一个参数,都是请求的路径。除了绝对匹配以外,Express允许模式匹配。 ``` app.get("/hello/:who", function(req, res) { res.end("Hello, " + req.params.who + "."); }); ``` 上面代码将匹配“/hello/alice”网址,网址中的alice将被捕获,作为req.params.who属性的值。需要注意的是,捕获后需要对网址进行检查,过滤不安全字符,上面的写法只是为了演示,生产中不应这样直接使用用户提供的值。 如果在模式参数后面加上问号,表示该参数可选。 ``` app.get('/hello/:who?',function(req,res) { if(req.params.id) { // 这里是 who 参数吧 res.end("Hello, " + req.params.who +...