编辑:我在多个API上尝试了这个,也是一个实际的Android设备,它在保存时仍然崩溃。
我正在使用适用于Visual Studio的Apache Cordova工具和cordova联系人插件(v2.13)在Android上开发基于联系人的应用程序。我目前可以保存和检索联系人,但我无法更新联系人。我正在使用genymotion模拟器。和设备原生联系人列表。
您应该可以通过传入已存在的联系人ID来更新联系人。
我有联系人对象并且正在填充所有字段,但是当我尝试保存时,应用程序崩溃但没有错误消息。
我知道这在联系人v1.3及更低版本中是一个问题,但已在问题列表中标记为已解决。
Contact Issue Resolution Documentation
以下是我的对象的屏幕截图以及完整的AngularJS代码
droidSync.controller('managerController', function ($scope) {
//Initialize model
$scope.contact = {};
// Create a new contact
$scope.createContact = function () {
// Contact Object
contact = navigator.contacts.create();
$scope.saveContact();
};
// Pick Contact from Device
$scope.editContact = function () {
contact = navigator.contacts.pickContact(function(contact){
console.log(contact);
//This only updates the text fields. It does not actually assign new values to the object
$scope.$apply(function () {
$scope.contact.firstName = contact.name.givenName;
$scope.contact.lastName = contact.name.familyName;
$scope.contact.mobileNo = contact.phoneNumbers[0].value;
$scope.contact.homeNo = contact.phoneNumbers[1].value;
$scope.contact.email = contact.emails[0].value;
$scope.contact.id = contact.id;
});
})
};
// Delete Contact from Device
$scope.deleteContact = function () {
//Delete Function Here
};
$scope.saveContact = function () {
var contact = navigator.contacts.create();
if ($scope.contact.id !== "undefined") {
contact.id = $scope.contact.id;
}
// Display Name and Email
contact.displayName = $scope.contact.firstName;
contact.nickname = $scope.contact.lastName;
var emails = [];
emails[0] = new ContactField('work', $scope.contact.email, true)
contact.emails = emails;
// Phone Numbers
var phoneNumbers = [];
phoneNumbers[0] = new ContactField('mobile', $scope.contact.mobileNo, true); // preferred number
phoneNumbers[1] = new ContactField('home', $scope.contact.homeNo, false);
contact.phoneNumbers = phoneNumbers;
// Names
var name = new ContactName();
name.givenName = $scope.contact.firstName;
name.familyName = $scope.contact.lastName;
contact.name = name;
// save to device
contact.save();
}
});
droidSync.controller('settingsController', function ($scope) {
});
答案 0 :(得分:0)
原来这是主要的脚本文件被加载到错误的地方......我在<head>
标签中引用了它,并且它需要进入后面的cordova引用的位置{ {1}}
<body>
<!-- DroidSync references -->
<!-- WHERE IT WAS -->
<link href="css/index.css" rel="stylesheet" />
<link href="css/ionicons.css" rel="stylesheet" />
<link href="Content/ionic.css" rel="stylesheet">
</head>