使用PhoneGap从联系人列表中获取联系人时,我遇到了严重问题。我已经安装了插件并做了所有事情,但似乎它对我不起作用。
那么,问题是什么? 它的问题是我的联系人有电子邮件帐户。所以电子邮件没有电话号码。 这是截图: http://prntscr.com/82meyr
What is the issue ?
嗯,问题是当它遇到电子邮件时,for循环立即停止并仅显示20-30个联系人!
function onSuccess(contacts)
{
alert("Total contacts = "+ contacts.length);
for (var i=0; i<contacts.length; i++)
{
$('#contactList').append("<li><a href='#'><h2>"+ contacts[i].displayName +"</h2><p>" + contacts[i].phoneNumbers[0].value + "</p></a></li>");
$('#contactList').listview("refresh");
}
}
Here is the code I'm using.(already posted but didn't get answer)
- &GT; https://stackoverflow.com/questions/31889859/phonegap-error-on-the-physical-device
Is there any way to bypass the email accounts ?
谢谢!