/**
- json参数格式定义
*/
type inputJSON = {
inputText: string,
errCode: number
}
/** - json入参格式
*/
type JsonParamOptions = {
input: inputJSON;
success: (res: inputJSON) => void;
fail: (res: string) => void;
complete: (res: string) => void;
};
/**
- 导出无参的UTS函数
- @param opts
*/
export function callWithoutParam(success: () => void) {
success();
return { name: "doSthWithCallback" };
}
/**
- 导出一个字符串入参的UTS函数
*/
export function callWithStringParam(input: string, success: (res: string) => void) {
success(input);
return { name: "doSthWithCallback" };
}
/**
- 导出一个JSON入参的UTS函数
*/
export function callWithJSONParam(opts: JsonParamOptions) {
opts.input.errCode = 10;
opts.success(opts.input);
return { name: "doSthWithCallback" };
}
不凡的青石
我都打了一上午了,打包次数限制都用玩了还是一样的错误。
2023-09-15 15:29