我正在尝试使用 PhoneGap API 以及用于表单布局的 javascript 和 HTML5 创建一个联系表单。通过联系表格,我的意思是我希望能够添加新联系人并搜索现有联系人。到目前为止,我遵循了 Adobe 网站上的教程/视频来执行此操作。
一些注意事项: * 我必须使用 PhoneGap 1.9.0 * 它必须在 Android 2.3.3 Level 10 上运行 * 我不是一个过于自信的程序员
我的代码是:
JS
$( document ).bind( 'deviceready', function() {
$('#btnCreate').bind('touchstart', function() {
var contact = navigator.contacts.create();
var name = null;
contact.displayName =
$( 'txtFirst' ).attr('value') + ' ' + $( 'txtLast' ).attr('value');
contact.nickname =
$( 'txtFirst' ).attr('value') + ' ' + $( 'txtLast' ).attr('value');
name = new ContactName();
name.givenName = $( 'txtFirst' ).attr('value');
name.familyName = $( 'txtFirst' ).attr('value');
contact.name = name;
contact.emails = [
new ContactField ( 'home', $( '#txtEmail' ).attr('value'), true )];
contact.phoneNumbers = [
new ContactField ( 'mobile', $( '#txtMobile' ).attr('value'), true )];
contact.save(function() {
$('#txtFirst').attr('value', '');
$('#txtLast').attr('value', '');
$('#txtEmail').attr('value', '');
$('#txtMobile').attr('value', '');
}, function() {
console.log( 'Error' );
} );
} );
$( '#btnFind' ).bind( 'touchstart', function() {
var fields = ['*'];
var options = {
filter: $( '#txtLast' ).attr( 'value' ), multiple:true };
navigator.contacts.find( fields, function(contacts) {
$( '#txtFirst').attr('value', contacts[0].name.givenName );
$( '#txtLast').attr('value', contacts[0].name.familyName );
$( '#txtEmail').attr('value', contacts[0].emails[0].value );
$( '#txtMobile').attr('value', contacts[0].phoneNumber[0].value );
}, function(error) {
console.log('Error');
},
options );
});
});
HTML5
<div data-role="content">
<div id="contactContainer" >
<form id="lblFirst" > First Name: </form>
<input id="txtFirst" placeholder="First Name"/>
<form id="lblLast"> Last Name: </form>
<input id="txtLast" placeholder="Last Name"/>
<form id="lblEmail"> Email: </form>
<input id="txtEmail" placeholder="Email"/>
<form id="lblMobile"> Phone : </form>
<input id="txtMobile" placeholder="Phone"/>
<button id="btnCreate" data-corners="false">Create Contact </button>
<button id="btnFind" data-corners="false"> Find Contact </button>
</div>
</div>
谢谢你的时间