码迷,mamicode.com
首页 > 其他好文 > 详细

HBuilder 获取通讯录

时间:2015-08-06 20:15:01      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:

代码:

var content="";
        
function getCallLog() {
    try{
     plus.contacts.getAddressBook(plus.contacts.ADDRESSBOOK_PHONE, function (addressbook) {
        addressbook.find(["displayName","phoneNumbers"],function(contacts){
            content="联系人数量:"+contacts.length;     
            content+="<br>";
            for(var i=0;i<contacts.length;i++){
                for(var j=0;j<contacts[i].phoneNumbers.length;j++){
                    var str="<p><span style=‘display:inline_block‘;width:120px;‘>姓名:"+contacts[i].displayName+"</span>号码:"+contacts[i].phoneNumbers[j].value+"</p>";
                }
                
                 content+=str;
            
            }    
            console.log(content);
//            content+=JSON.stringify(contacts);
        }, function () {
            content="error";
        },{multiple:true});
    },function(e){
        content="Get address book failed: " + e.message;
    });
    }
    catch(e){
        content+=e.message;
    }
    outLine(content);
}

http://www.html5plus.org/doc/zh_cn/contacts.html

注意:通讯录对象phoneNumbers是个数组对象,里面有多个号码

 

HBuilder 获取通讯录

标签:

原文地址:http://www.cnblogs.com/hongdada/p/4708777.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!