我有一个扩展程序,可以加载带有文本字段和按钮的停靠面板。此按钮的功能是显示在文本字段中给定的项目名称的DB-ID。

就像是:
橡胶= 2130

其中Rubber是输入,2130(db-id)将是输出

我该如何实现?

提前致谢。

最佳答案

建议使用.search()方法,这是一种受支持的方法:

viewer.search('Rubber', function(dbIds){
  // here the dbIds is a list of dbIds, you can handle it
  callback(dbIds); // handle the results async
}, function(error){
  // handle errors here...
}, ['name'] /* this array indicates the filter: search only on 'Name'*/
)


并在此处搜索how to improve performance

10-08 08:04