提交 cf0701c5 编写于 作者: D DCloud_LXH

fix: issue #1674

上级 2333f33c
...@@ -118,7 +118,7 @@ class XXX{ ...@@ -118,7 +118,7 @@ class XXX{
``` ```
### 2.4 线程环境差异 ### 2.4 线程环境差异 @thread-environment
UTS环境中,默认是没有线程概念的。 UTS环境中,默认是没有线程概念的。
...@@ -1304,4 +1304,3 @@ function getAppName(context : Context) : string { ...@@ -1304,4 +1304,3 @@ function getAppName(context : Context) : string {
### android原生资源文件,暂不支持三方库依赖 ### android原生资源文件,暂不支持三方库依赖
比如xml布局文件中暂时只支持 linearlayout等官方标签,不支持 appcompat等三方库标签。这个问题后续会被处理 比如xml布局文件中暂时只支持 linearlayout等官方标签,不支持 appcompat等三方库标签。这个问题后续会被处理
...@@ -682,7 +682,7 @@ amapLocationManager(manager : AMapLocationManager, @argumentLabel("didUpdate") l ...@@ -682,7 +682,7 @@ amapLocationManager(manager : AMapLocationManager, @argumentLabel("didUpdate") l
} }
``` ```
#### 5.1.13 异步方法 #### 5.1.13 异步方法 @async-method
swift 标记某个函数或者方法是异步的,你可以在它的声明中的参数列表后边加上 `async` 关键字 swift 标记某个函数或者方法是异步的,你可以在它的声明中的参数列表后边加上 `async` 关键字
......
...@@ -561,7 +561,7 @@ b instanceof Int //true ...@@ -561,7 +561,7 @@ b instanceof Int //true
> 3.93+ (Android) > 3.93+ (Android)
await 操作符用于等待一个 [Promise](./buildin-object-api/promise.md) 兑现并获取它兑现之后的值。它只能在[异步函数](./function.md#async)中使用。 await 操作符用于等待一个 [Promise](./buildin-object-api/promise.md) 兑现并获取它兑现之后的值。它只能在[异步函数](./function.md#async)中使用。
在 HBuilderX 3.93 以下的版本或者编译为swift时,await 不能与 [Promise](./buildin-object-api/promise.md) 一同使用,此时请分别参考:[安卓 异步函数](https://uniapp.dcloud.net.cn/plugin/uts-for-android.html#_6-11-synchronized-lock-等线程同步概念-在uts里怎么写)[iOS 异步函数](https://uniapp.dcloud.net.cn/plugin/uts-for-ios.html#_5-1-13-异步方法) 在 HBuilderX 3.93 以下的版本或者编译为swift时,await 不能与 [Promise](./buildin-object-api/promise.md) 一同使用,此时请分别参考:[安卓 异步函数](../plugin/uts-for-android.md#thread-environment)[iOS 异步函数](../plugin/uts-for-ios.md#async-method)
```ts ```ts
async function test(): Promise<string> { async function test(): Promise<string> {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册