android – cordova-plugin-contacts-没有获取所有活动日期

前端之家收集整理的这篇文章主要介绍了android – cordova-plugin-contacts-没有获取所有活动日期前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我使用以下代码使用联系人插件“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

ios设备不支持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);
原文链接:https://www.f2er.com/android/430082.html

猜你在找的Android相关文章