我想问一下 Contact API Cordova 2.5.0 中的删除功能。我使用 xcode 4.6 和 Iphone 版本 5.1.1。这真的有效吗?为什么删除函数总是转到onRemoveError?
这是代码:
var myContact = navigator.contacts.create();
myContact.note = document.getElementById('txtNote').value;
myContact.nickname = document.getElementById('txtNickname').value;
var name = new ContactName();
name.givenName = document.getElementById('txtGiven').value;
name.familyName = document.getElementById('txtFamily').value;
myContact.name = name;
// save
myContact.save(onSaveSuccess,onSaveError);
// remove
myContact.remove(onRemoveSuccess,onRemoveError);