0

我的代码如下,当我得到意图日志时,只返回我确定。我需要获取数据楔中的配置文件列表。请帮忙。

(<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 () {
   }  
);  
4

1 回答 1

1

如果您想获取所有配置文件的列表,那么您应该使用 GET_PROFILES_LIST,记录在http://techdocs.zebra.com/datawedge/7-0/guide/api/getprofileslist/中。有一个示例应用程序显示如何在https://github.com/Zebra/samples-datawedge/blob/master/DataWedge-API-Exerciser/app/src/main/java/com/zebra/datawedgeexerciser/调用它MainActivity.java#L241

于 2018-12-02T23:12:13.743 回答