From 1619414be3cd6fc3b61e912126ddca8d70bc2394 Mon Sep 17 00:00:00 2001 From: wangyaqi Date: Thu, 25 Jan 2024 14:50:03 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=E6=9B=B4=E6=96=B0uni-app-x=20web?= =?UTF-8?q?=E7=89=88=E5=BC=80=E5=8F=91=E6=96=87=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/web/README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/docs/web/README.md b/docs/web/README.md index 51d9d8a1..b208f86d 100644 --- a/docs/web/README.md +++ b/docs/web/README.md @@ -2,6 +2,8 @@ > 新增于4.0版本 +编译到web端时多数用法仍和编译到安卓端一致,本文档用于描述差异及需要注意的点。 + ## vue ### 特性支持情况 @@ -95,7 +97,15 @@ console.log(result instanceof Obj) // true ### any类型 -不同于ts,uts中any类型不包含null类型 +不同于ts,uts中any类型不包含null类型。 + +例如定义可选参数时应使用下面的写法: + +```ts +function test(anything?: any | null) { + console.log(anything) +} +``` ### void/undefined类型 -- GitLab