百度智能小程序 調(diào)用swan對象上的指定方法

2020-09-05 15:14 更新

smartProgram.callSwanMethod

解釋:調(diào)用 swan 對象上的指定方法。

smartProgram.callSwanMethod(method: string, ...args: any[]): Promise<any>

參數(shù)說明:

屬性名類型必填默認值說明
methodString-需要調(diào)用的方法名
...argsArray-方法參數(shù)

示例代碼:

automator.launch().then(async smartProgram => {
    await smartProgram.callSwanMethod('setStorage', {
        key: 'foo',
        data: 'bat'
    });
    const data = await smartProgram.callSwanMethod('getStorageSync', 'foo');
    console.log(data); // bar
})


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號