我使用以下代码使用联系人插件获取联系人和联系方式," 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
和Android中支持的某些属性在iOS设备中不支持。参考设备特定Quirks 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);