我使用以下代码使用联系人插件“cordova-plugin-contacts”获取联系人和联系人详细信息
var options = new ContactFindOptions();
options.filter = "";
options.multiple = true;
var fields = ["*"];
navigator.contacts.find(fields,onSuccessContact,onErrorContact,options);
但我无法获取像这样的事件日期
>周年纪念
>自定义
>其他
如何获得这些领域?
最佳答案
联系人插件只返回少数字段,请参阅https://github.com/apache/cordova-plugin-contacts#properties
原文链接:https://www.f2er.com/android/430082.htmlios设备不支持android中支持的一些属性.参考设备特定的怪癖https://github.com/apache/cordova-plugin-contacts#android-2x-quirks
您可以获取生日,显示名称,ID,phoneNumbers等字段.但
没有类型周年纪念日,定制等领域的支持.
您可以使用类别字段获取与联系人关联的用户定义类别.
// find all contacts with 'Bob' in any name field
var options = new ContactFindOptions();
options.filter = "Bob";
options.multiple = true;
// Contact fields to be returned back.
options.desiredFields = [navigator.contacts.fieldType.id,navigator.contacts.fieldType.birthday];
options.hasPhoneNumber = true;
var fields = [navigator.contacts.fieldType.displayName,navigator.contacts.fieldType.name];
navigator.contacts.find(fields,onSuccess,onError,options);