diff --git a/docs/web/README.md b/docs/web/README.md index 51d9d8a1f2e26bbe6f8a412e1bad83746f6b350f..b208f86da76b138628bc960750c9b45dbd6b3818 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类型