From 980090d6599a53d1b1294d7abc43b990ae6a08de Mon Sep 17 00:00:00 2001 From: lvxiaojiao Date: Fri, 6 Jan 2023 16:48:45 +0800 Subject: [PATCH] =?UTF-8?q?feat:=E5=8A=A8=E4=BD=9C=E4=B8=8A=E4=B8=8B?= =?UTF-8?q?=E6=96=87=E8=A1=A5=E5=85=85=5F=5FrendererData=E7=94=A8=E4=BA=8E?= =?UTF-8?q?=E8=8E=B7=E5=8F=96=E7=BB=84=E4=BB=B6=E5=BD=93=E5=89=8D=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E5=9F=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/zh-CN/concepts/event-action.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/zh-CN/concepts/event-action.md b/docs/zh-CN/concepts/event-action.md index 671bf5df9..b9fd5fe56 100644 --- a/docs/zh-CN/concepts/event-action.md +++ b/docs/zh-CN/concepts/event-action.md @@ -123,7 +123,7 @@ order: 9 ### 上下文 -执行动作时,可以通过`${event.data}`获取事件对象的数据、通过`${$$}`获取组件当前数据域,例如: +执行动作时,可以通过`${event.data}`获取事件对象的数据、通过`${__rendererData}`获取组件当前数据域,例如: ```schema { @@ -179,7 +179,7 @@ order: 9 { actionType: 'toast', args: { - msg: '${$$|json}' + msg: '${__rendererData|json}' } } ] @@ -199,7 +199,7 @@ order: 9 { actionType: 'toast', args: { - msg: '${$$|json}' + msg: '${__rendererData|json}' } } ]