ICode9

精准搜索请尝试: 精确搜索
首页 > 编程语言> 文章详细

javascript-navigator.contacts.find无法正常使用(cordova / phonegap)

2019-11-22 02:28:21  阅读:299  来源: 互联网

标签:contact cordova android-contacts javascript android


我正在尝试访问电话上的联系人.我正在使用下面的代码来执行此操作,但是navigator.contacts.find无法正常工作.它不会返回错误或成功消息.如果在该行代码之后放置任何类型的警报,它将不会出现.

function read_contacts(){

var options = new ContactFindOptions( );

options.filter = "";  //leaving this empty will find return all contacts

options.multiple = true;  //return multiple results

var filter = ["displayName"];    //an array of fields to compare against the options.filter 

navigator.contacts.find(filter, successFunc, errFunc, options); //breaking the code

function successFunc( matches ){
    alert("reading contacts...");
  for( var i=0; i<matches.length; i++){
    alert( matches[i].displayName );
  }

function errFunc(){
    alert("Error finding contacts");
    }
}

}

解决方法:

Phonegap Docs

尝试这个 –

function onDeviceReady() {
    var options = new ContactFindOptions();
    options.filter = "";          // empty search string returns all contacts
    options.multiple = true;      // return multiple results
    filter = ["displayName", "name"];   // return contact.displayName 
    navigator.contacts.find(filter, onSuccess, one rror, options);
}

// onSuccess: Get a snapshot of the current contacts

function onSuccess(contacts) {
       for (var i = 0; i < contacts.length; i++) {
            console.log("Display Name = " + contacts[i].displayName);
        }
}

// one rror: Failed to get the contacts

function one rror(contactError) {
     alert('onError!');
}

尝试使用此代码查找具有显示名称的所有联系人.

标签:contact,cordova,android-contacts,javascript,android
来源: https://codeday.me/bug/20191122/2056197.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有