我的代码如下,当我得到意图日志时,只返回我确定。我需要获取数据楔中的配置文件列表。请帮忙。
(<any>window).plugins.intentShim.sendBroadcast({
action: 'com.symbol.datawedge.api.ACTION',
extras: {
"com.symbol.datawedge.api.GET_PROFILES_LIST": ""
}
},
function (intent) {
let data_string = "com.symbol.datawedge.api.RESULT_GET_PROFILES_LIST";
console.log('Profile-' + intent.extras[data_string]);
},
function () {
}
);