Flutter教程

Contacts

Contents

Access and manage Contacts on the device.

https://github.com/apache/cordova-plugin-contacts

联系我们?

If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic's experts offer official maintenance, support, and integration help.

Contact Us Today!

Ionic 联系人Contacts插件的安装(Installation)

ionic cordova plugin add cordova-plugin-contacts npm install @ionic-native/contacts
Ionic EE comes with fully supported and maintained plugins from the Ionic Team. Learn More or Contact Us
ionic enterprise register --key=YOURPRODUCTKEY npm install @ionic-enterprise/contacts

Ionic 联系人Contacts插件支持的平台(Supported Platforms)

  • Android
  • BlackBerry 10
  • Browser
  • Firefox OS
  • iOS
  • Ubuntu
  • Windows
  • Windows 8
  • Windows Phone

Ionic 联系人Contacts插件的用法(Usage)

import { Contacts, Contact, ContactField, ContactName } from '@ionic-native/contacts/ngx';

constructor(private contacts: Contacts) { }

let contact: Contact = this.contacts.create();

contact.name = new ContactName(null, 'Smith', 'John');
contact.phoneNumbers = [new ContactField('mobile', '6471234567')];
contact.save().then(
  () => console.log('Contact saved!', contact),
  (error: any) => console.error('Error saving contact.', error)
);