From 0f570419255fce632ed2f9d1fbe26f2a944d0094 Mon Sep 17 00:00:00 2001 From: lizhongyi Date: Sat, 11 May 2024 13:49:56 +0800 Subject: [PATCH] docs: update uts-plugin.md --- docs/plugin/uts-plugin.md | 42 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/docs/plugin/uts-plugin.md b/docs/plugin/uts-plugin.md index 47dc5459..27c65b65 100644 --- a/docs/plugin/uts-plugin.md +++ b/docs/plugin/uts-plugin.md @@ -1405,6 +1405,48 @@ uts插件支持debug断点调试。 HBuilderX 3.7.7开始,不推荐使用 UTSCallback 定义函数类型,当需要定义函数类型时,应定义为更具体的类型,如:`const callback:UTSCallback` 应调整为`const callback:()=>void` 如果您使用的是插件市场三方uts插件,可以检查更新插件最新版本 +- iOS 平台异步 Api 的回调函数不支持返回值 + +```uts +// iOS 平台不支持带返回值的回调 +export type TestCallback = { + success : (res : any) => any + fail : (err : any) => any +} + +export class Test { + static getAll(callbacks : TestCallback) : void { + try { + let res = callbacks.success("1"); + console.log(res); + } catch (e) { + let res = callbacks.fail("2"); + console.log(res); + } + } +} +``` + +需要将上面的写法改成: + +```uts +export type TestCallback = { + success : (res : any) => void + fail : (err : any) => void +} + +export class Test { + static getAll(callbacks : TestCallback) : void { + try { + callbacks.success("1"); + } catch (e) { + callbacks.fail("2"); + } + } +} +``` + + ### Float类型传参 android很多布局参数强制要求Float,但是ts中没有内置这种类型。可以使用下面的代码实现转换 -- GitLab