提交 68273916 编写于 作者: 杜庆泉's avatar 杜庆泉

Update uts-plugin.md

上级 e2094503
......@@ -228,8 +228,6 @@ Android平台原生三方库目录,支持以下类型文件:
仓储配置参考config.json的[dependencies](#dependencies)
如果使用的三方sdk包含了so库,保存到此目录时,需按Android的abi类型分目录保存。
关于libs目录的使用,可以参考 [Hello UTS](https://gitcode.net/dcloud/hello-uts/-/tree/master/uni_modules)
......@@ -1414,16 +1412,16 @@ export type TestCallback = {
fail : (err : any) => any
}
export class Test {
static getAll(callbacks : TestCallback) : void {
try {
export class Test {
static getAll(callbacks : TestCallback) : void {
try {
let res = callbacks.success("1");
console.log(res);
} catch (e) {
console.log(res);
} catch (e) {
let res = callbacks.fail("2");
console.log(res);
}
}
console.log(res);
}
}
}
```
......@@ -1435,14 +1433,14 @@ export type TestCallback = {
fail : (err : any) => void
}
export class Test {
static getAll(callbacks : TestCallback) : void {
try {
callbacks.success("1");
} catch (e) {
callbacks.fail("2");
}
}
export class Test {
static getAll(callbacks : TestCallback) : void {
try {
callbacks.success("1");
} catch (e) {
callbacks.fail("2");
}
}
}
```
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册