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

Update uts-for-android.md

上级 0393d06d
......@@ -1185,17 +1185,26 @@ js引擎除了 string,number,boolean 等基本数据结构外,仅支持JSONObj
```
// UTS插件,声明数组参数
function getBaseInfo(filterArray : Array<string>) : GetDeviceInfoResult {
// todo
export function callWithoutParam(filterArray : Array<string>,success: () => void) {
console.log(filterArray)
success();
return { name: "doSthWithCallback" };
}
```
```js
// 前端传递数组参数
console.log(getDeviceInfo({
filter:["system"]
}));
UTSHello.callWithoutParam(
["system","optionB"]
,
()=>{
uni.showToast({
title:'成功调用uts插件uts-helloworld的callWithoutParam',
icon:'none'
});
}
);
```
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册