我正在使用手機差距的應用程序。 我正嘗試訪問手機上的聯繫人,以後再使用它們。 我現在正在嘗試編寫代碼以在移動設備上查找聯繫人。 下面是我使用的JS文件:在Android上使用Phonegap訪問聯繫人
alert('Starting JS');
var TAP = ('ontouchend' in window) ? 'touchend' : 'click';
alert('I entered the function');
document.addEventListener('DOMContentLoaded', function() {
alert('I entered the second function');
x$('#friendSubmit').on(TAP, function() {
var filter = x$('#friendName')[0].value;
alert('I entered the third function');
if (!filter)
{
alert('Cant find contacts');
// no contents
return;
}
else
{
findContactByName(filter, function (contacts)
{
alert(contacts.length + ' contact(s) found matching "' +filter + '"');
}
); }
}); });
function findContactByName(name, callback) {
function onError() {
alert('Error: unable to read contacts');
};
var fields = ["displayName", "name"],
options = new ContactFindOptions();
options.filter = name;
options.multiple = true;
// find contacts
navigator.service.contacts.find(fields, callback, onError,
options);
}
警報都沒有被驚動,如此看來,什麼是錯的代碼(但是當我刪除了「findContactByName」功能,它提醒
您是否知道如果我應該添加任何類型的插件或更新任何內容以使這些函數可以工作? 我正在使用cordova版本1.6.1,並且我更新了清單中的權限以便能夠訪問聯繫人。 那麼,你知道我的代碼有什麼問題嗎&爲什麼它不起作用?
非常感謝。
它的工作,非常感謝=) – 2012-04-23 23:04:54