提交 3652c86b 编写于 作者: DCloud-WZF's avatar DCloud-WZF 💬

docs($emit setStorageSync): 补充参数为对象字面量需要明确类型说明

上级 fc03cc97
...@@ -48,6 +48,14 @@ ...@@ -48,6 +48,14 @@
<!-- UTSAPIJSON.$emit.param --> <!-- UTSAPIJSON.$emit.param -->
:::warning
参数 `args` 为对象字面量时,需要通过 `as UTSJSONObject` 明确类型,例如:
```js
uni.$emit('fn', {"a": 1} as UTSJSONObject)
```
:::
<!-- UTSAPIJSON.$emit.returnValue --> <!-- UTSAPIJSON.$emit.returnValue -->
<!-- UTSAPIJSON.$emit.example --> <!-- UTSAPIJSON.$emit.example -->
......
...@@ -37,6 +37,13 @@ uni-app的Storage在不同端的实现不同: ...@@ -37,6 +37,13 @@ uni-app的Storage在不同端的实现不同:
<!-- UTSAPIJSON.setStorageSync.param --> <!-- UTSAPIJSON.setStorageSync.param -->
:::warning
参数 `data` 为对象字面量时,需要通过 `as UTSJSONObject` 明确类型,例如:
```js
uni.setStorageSync('obj', {"a": 1} as UTSJSONObject)
```
:::
<!-- UTSAPIJSON.setStorageSync.returnValue --> <!-- UTSAPIJSON.setStorageSync.returnValue -->
<!-- UTSAPIJSON.setStorageSync.example --> <!-- UTSAPIJSON.setStorageSync.example -->
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册