如何使用phonegap保存联系人

时间:2012-06-06 05:24:50

标签: android cordova android-contacts

感谢之前的回复,

我正在尝试使用手机间隙添加联系人,我使用了`

var phoneNumbers = [];
phoneNumbers[0] = new ContactField('work', '1234567890', false);
phoneNumbers[1] = new ContactField('mobile', '1234567890123456', true); // preferred number
phoneNumbers[2] = new ContactField('home', '1234567890', false);
contact.phoneNumbers = phoneNumbers; contact.save(onSaveSuccess,onSaveError);`

但此代码正在Google中保存联系人。而不是这个我想存储在我的本地联系人存储。有可能将联系人存储在本地。

请指导我弄明白。

谢谢

1 个答案:

答案 0 :(得分:0)

function writeLocalStorage()
{
    window.localStorage.setItem("Username", "name");
    window.localStorage.setItem("ph_no", "no.");
    //here code for get the item.
 }

可能你必须根据你的要求改变功能体,我希望它有效!

了解更多信息,请参阅here