博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
phonegap ios contact(获取手机号)
阅读量:6238 次
发布时间:2019-06-22

本文共 1884 字,大约阅读时间需要 6 分钟。

hot3.png

var app = {

    initialize: function(){
        this.bindEvents();
    },
    bindEvents: function(){
        document.addEventListener('deviceready', this.onDeviceReady, false);
    },
    onDeviceReady: function(){
        app.foreachContacts();
    },
    foreachContacts: function(){
        function onSuccess(contacts) {
            for (var i=0; i<contacts.length; i++) {
                // display phone numbers
                for (var j=0; j<contacts[i].phoneNumbers.length; j++) {
                    var d = "Type: " + contacts[i].phoneNumbers[j].type + "\n" +
                            "Value: "  + contacts[i].phoneNumbers[j].value + "\n" +
                            "Preferred: "  + contacts[i].phoneNumbers[j].pref;
                    document.getElementById("contact").innerHTML += "<li class=\"userinfo\">" + d + "</li>";
                }
            }
        };
        
        function onError(contactError) {
            alert('onError!');
        };
        
        var options = new ContactFindOptions();
        
        // id: A globally unique identifier. (DOMString)
        // displayName: The name of this Contact, suitable for display to end-users. (DOMString)
        // name: An object containing all components of a persons name. (ContactName)
        // nickname: A casual name to address the contact by. (DOMString)
        // phoneNumbers: An array of all the contact's phone numbers. (ContactField[])
        // emails: An array of all the contact's email addresses. (ContactField[])
        // addresses: An array of all the contact's addresses. (ContactAddress[])
        // ims: An array of all the contact's IM addresses. (ContactField[])
        // organizations: An array of all the contact's organizations. (ContactOrganization[])
        // birthday: The birthday of the contact. (Date)
        // note: A note about the contact. (DOMString)
        // photos: An array of the contact's photos. (ContactField[])
        // categories: An array of all the contacts user defined categories. (ContactField[])
        // urls: An array of web pages associated to the contact. (ContactField[])
        var fields = ["phoneNumbers"];
        navigator.contacts.find(fields, onSuccess, onError);
    }
    
}
app.initialize();

转载于:https://my.oschina.net/phper1234/blog/335898

你可能感兴趣的文章
基于http协议使用protobuf进行前后端交互
查看>>
bash腳本編程之三 条件判断及算数运算
查看>>
php cookie
查看>>
linux下redis安装
查看>>
量子通信和大数据最有市场突破前景
查看>>
如何申请开通微信多客服功能
查看>>
Sr_C++_Engineer_(LBS_Engine@Global Map Dept.)
查看>>
非监督学习算法:异常检测
查看>>
jquery的checkbox,radio,select等方法总结
查看>>
Linux coredump
查看>>
Ubuntu 10.04安装水晶(Mercury)无线网卡驱动
查看>>
我的友情链接
查看>>
ElasticSearch 2 (32) - 信息聚合系列之范围限定
查看>>
VS2010远程调试C#程序
查看>>
[MicroPython]TurniBit开发板DIY自动窗帘模拟系统
查看>>
从Handler.post(Runnable r)再一次梳理Android的消息机制(以及handler的内存泄露)
查看>>
windows查看端口占用
查看>>
Yii用ajax实现无刷新检索更新CListView数据
查看>>
JDBC的事务
查看>>
App 卸载记录
查看>>