我正在使用Phonegap构建手机应用。我尝试使用Cordova Contact API检索手机上的通讯录名称。这是我目前的代码。它适用于Android设备。它只是从手机获取联系人并将它们附加到ul元素。我使用一个小jquery来追加。 Cordova Contact API中的displayName属性允许您获取手机上的联系人姓名。我刚刚意识到ios不支持它。我试过联系[I] .name;以及我的代码,什么也没得到。如果有人能告诉我ios支持哪些属性,我将不胜感激。如何获取iphone4或5上的联系人姓名?
// Wait for Cordova to load
//
document.addEventListener("deviceready", onDeviceReady, false);
// Cordova is ready
//
function onDeviceReady() {
// find all contacts
var options = new ContactFindOptions();
options.filter="";
options.multiple=true;
var filter = ["*"];
navigator.contacts.find(filter, onSuccess, onError, options);
}
// onSuccess: Get a snapshot of the current contacts
//
function onSuccess(contacts) {
for (var i=0; i<contacts.length; i++) {
//alert(contacts[i].displayName);
//make if statement where
var mycontact = contacts[i].displayName;
///alert(mycontact);
if(mycontact == null){
}
else
{
$("#contactlist").append('<li style="background-color:rgb(184,249,255);height:70px;overflow:hidden;border-top:solid 1px; border-bottom:solid 1px background-color:rgb(184,249,255);"><p style="font-family: Arial;font-size: 18px;top: 5px;position: relative;left: 10px;">' + mycontact + '</p></li>');
}
}
// ele.innerHTML = str;
}
// onError: Failed to get the contacts
//
function onError(contactError) {
alert('onError!');
}
答案 0 :(得分:4)
今天我发现了一篇博文,非常好地解释了这一点:http://www.raymondcamden.com/index.cfm/2014/7/9/Cordova-Plugin-update-and-new-Contacts-demo
简而言之,在演示代码的最后,作者提供了这个:
/*
Handles iOS not returning displayName or returning null/""
*/
function getName(c) {
var name = c.displayName;
if(!name || name === "") {
if(c.name.formatted) return c.name.formatted;
if(c.name.givenName && c.name.familyName) return c.name.givenName +" "+c.name.familyName;
return "Nameless";
}
return name;
}