PhoneGap检索联系人

时间:2015-08-09 15:05:23

标签: javascript android cordova phonegap-plugins phonegap-build

使用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");
            }
  }

我的联系人.vcf文件。您可以在模拟器上导入它。

链接:https://dl.dropboxusercontent.com/u/43274075/00004.vcf

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 ?

谢谢!

0 个答案:

没有答案