From 4a524f3869132aa5efb18019ec5339996d482719 Mon Sep 17 00:00:00 2001 From: zhenyuWang <13641039885@163.com> Date: Wed, 23 Oct 2024 11:16:03 +0800 Subject: [PATCH] =?UTF-8?q?docs(eventBus):=20=E8=A1=A5=E5=85=85=E7=B1=BB?= =?UTF-8?q?=E5=9E=8B=E6=8E=A8=E8=8D=90=E8=AF=B4=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/api/event-bus.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/api/event-bus.md b/docs/api/event-bus.md index 4e608c3f..bbf4a6ff 100644 --- a/docs/api/event-bus.md +++ b/docs/api/event-bus.md @@ -50,10 +50,11 @@ :::warning -参数 `args` 为对象字面量时,需要通过 `as UTSJSONObject` 明确类型,例如: +参数 `args` 为对象字面量时,4.25 前需要通过 `as` 明确类型,例如: ```js uni.$emit('fn', {"a": 1} as UTSJSONObject) ``` +4.25+ 编译器会自动将对象字面量推断为 `UTSJSONObject` 类型,不再需要通过 `as` 明确类型。如果需要传递其他自定义类型的对象字面量,仍需要通过 `as` 明确类型。 ::: -- GitLab