使用phonegap查找联系人

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用phonegap查找联系人相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>

	<head>
		<meta charset="UTF-8">
		<title>Database Example</title>

		<script type="text/javascript" charset="UTF-8" src="cordova.js"></script>
		<script type="text/javascript" charset="UTF-8">
			document.addEventListener("deviceready", onDeviceReady, false);

			function onDeviceReady() {
			}
			
			function onSuccess(contacts){
				document.write(contacts.length+‘contacts found.‘);
				for(var i=0;i<contacts.length;i++){
					for(var j=0;j<contacts[i].emails.length;j++){
						document.write("Email="+contacts[i].emails[j].email);
					}
				}
				alert(‘success‘);
			}
			
			function onError(error){
				 alert("Ooops!");
			}
			
			function findContact(){
				var myOptions=new ContactFindOptions();
				myOptions.filter="gmail";//过滤
				var myFields=["emails"];//要查询的字段
				navigator.contacts.find(myFields,onSuccess,onError,myOptions);
			}
			
		</script>
	</head>

	<body>
		<button onclick="findContact();">Find Contact</button>
	</body>

</html>

  

以上是关于使用phonegap查找联系人的主要内容,如果未能解决你的问题,请参考以下文章

contacts.find 在 Android 4 上不起作用(phonegap)

如何在 IOS 上使用 Phonegap 读取具有组名的联系人

在 Phonegap 构建中使用联系人插件

使用Phonegap打开Iphone联系人应用程序

如何使用片段将联系人选择到edittext

Android - 片段中的联系人选择器