zoukankan      html  css  js  c++  java
  • uniapp读取通讯录

    getContacts: function() {
                    var that = this;
                    //获取通讯录对象
                    plus.contacts.getAddressBook( plus.contacts.ADDRESSBOOK_PHONE, function( addressbook ) {
                            uni.showToast({
                                title: '获取通讯录对象成功',
                                duration: 2000
                            })
                            console.log('获取通讯录对象成功')
                            console.log(addressbook)
                            // 查找联系人
                            addressbook.find(["displayName","phoneNumbers"],function(contacts){
                                uni.showToast({
                                    title: '获取联系人成功',
                                    duration: 2000
                                })
                                console.log('获取联系人成功')
                                console.log(JSON.stringify(contacts))
                                that.list = contacts
                            }, function () {
                                uni.showToast({
                                    title: '获取联系人失败',
                                    duration: 2000
                                })
                            },{multiple:true});
                        }, function ( e ) {
                            uni.showToast({
                                title: '获取通讯录对象失败:' + e.message,
                                duration: 2000
                            })
                        });
                },

  • 相关阅读:
    [CQOI2009]叶子的染色
    CF149D 【Coloring Brackets】
    [BJOI2016]回转寿司
    linux基础学习-19.2-Shell脚本的创建
    linux基础学习-19.1-Shell的介绍
    linux基础学习-18.11-第六关考试题
    linux基础学习-18.10-awk数组
    linux基础学习-18.9-awk中的动作
    linux基础学习-18.8-awk特殊模式-BEGIN模式与END模式
    linux基础学习-18.7-awk范围模式
  • 原文地址:https://www.cnblogs.com/jyc226/p/14781378.html
Copyright © 2011-2022 走看看