In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/03 Report--
This article will explain in detail how to achieve HTML5 address book to obtain the information of a specified number of people, Xiaobian thinks it is quite practical, so share it with you as a reference, I hope you can gain something after reading this article.
First, obtain information of multiple people: To solve the problem of importing information of multiple people from the address book, it is necessary to solve the problem of obtaining information of multiple people. I get the id and displayName of all the contacts in the address book through the application of plus.contacts.getAddressBook and address.find, and then display them through the address book acquisition page I wrote myself.
First of all, you have to write a JS address book yourself, so that you can separate all your contact initials, and you can jump to the initials you want.
2. Solve Get all contact information
plus.contacts.getAddressBook(plus.contacts.ADDRESSBOOK_PHONE, function(addressbook) { //Get address book information //Address book operation via addressbook addressbook.find(null, function(contacts) { var username = new Array(); var LinkList = new LinkedList(); if(contacts.length > 0) { //Get everyone in the current address book for(var i = 0; i
< contacts.length; i ) { username[i] = contacts[i].displayName "-" contacts[i].id; //连接id和username,为后面筛选最准备 } //这下面的代码是把所有联系人的信息分类,这就涉及到了自己写的JS页面代码 LinkList = sortPY(username); //把联系人数组分类 //LinkList.show(); createLiCheckBox(LinkList); //分类信息显示至页面,我使用checkBox进行多个联系人选择 } }, function(e) { alert("Find contact error: " e.message); }); }, function(e) { }); 二、从通讯录导入多个选定的个人信息:解决这个问题在先前创建通讯录页面的时候就一定要把联系人的id放在在页面上(使用display隐藏),这样我获取被选中的checkBox的时候就可以直接获取id,并且把这些id放到一个数组里面。再通过plus.contacts.getAddressBook和address.find的套用把这些id的联系人信息筛选出来。 1、解决使用checkBox获取联系人id,这里我使用了JQuery。 //筛选已经被选中的checkbox $("input:checked").each(function() { var index = $(this).parent().prev().children('label').text(); //获取id var name = $(this).parent().prev().children('p').text(); //获取姓名 username.push(name); usernameIndex.push(index); }); 2、解决把这些index放到find里面进行筛选信息,把特定id下面的联系人信息拿出来 plus.contacts.getAddressBook(plus.contacts.ADDRESSBOOK_PHONE, function(addressbook) { //获取通讯录信息 for(var j = 0; j < username.length; j ) {//循环所选取的联系人,记得循环一定要放在这里,一开始我放在 plus.contacts.getAddressBook外面是错误 addressbook.find(null, function(contacts) { console.log("进入查询"); for(var i = 0; i < contacts.length; i ) {//无论是否为多个信息,一定要循环数组 console.log("进入循环"); //var id = contacts[i].id; var displayname = contacts[i].displayName; var phone = ""; var emails = ""; var dates = ""; var remark = ""; if(contacts[i].phoneNumbers.length >0) {//这里需要判断是否为空,为空的数组没有index=0; phone = contacts[i].phoneNumbers[0].value; } else { phone = contacts[i].phoneNumbers; } if(contacts[i].emails.length > 0) {//这里需要判断是否为空,为空的数组没有index=0; emails = contacts[i].emails[0].value; } else { emails = contacts[i].emails; } var dateNum = new Date(contacts[i].birthday);//这里的birthday是number类型!!!官方手册坑爹? dates = dateNum.getFullYear() "." (dateNum.getMonth() 1) "." dateNum.getDate(); remark = contacts[i].note; var getContact = {//把所有信息放到一个json里面 contactName: displayname, sex: "", department: "", positions: "", tel: "", phone: phone, eMail: emails, birthday: dates, hobby: "", remark: remark }; //这下面是我的业务代码了,这里大家可以写自己的信息 //createContactTable(db); //InsertContact(db, getContact); //多个信息插入有线程安全的问题出现!!!!!!! } //console.log(username.length); }, function(e) { console.log("查询错误"); }, { //这里面的筛选非常重要!!!这样才能选出匹配的信息 filter: [{ logic: "or", field: "id", value: usernameIndex[j] }], multi: false }); } }, function(e) { console.log("打开通讯录错误"); });关于"HTML5如何实现通讯录获取指定多个人的信息 "这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.