私はphonegapを使用してAndroidデバイスから連絡先リストを取得する必要があります.....私はこれに従っています
そしてこのコードを書いた
<!DOCTYPE html>
PhoneGapデバイス対応の例
<script type="text/javascript" charset="utf-8" src="phonegap-1.4.1.js"></script>
<script type="text/javascript" charset="utf-8">
// Call onDeviceReady when PhoneGap is loaded.
//
// At this point, the document has loaded but phonegap-1.0.0.js has not.
// When PhoneGap is loaded and talking with the native device,
// it will call the event 'deviceready'.
//
document.addEventListener("deviceready", onDeviceReady, false);
// PhoneGap is loaded and it is now safe to make calls PhoneGap methods
//
function onDeviceReady() {
var options = new ContactFindOptions();
options.filter="Bob";
var fields = ["displayName", "name"];
navigator.contacts.find(fields, onSuccess, onError, options);
}
function onSuccess(contacts) {
alert('OnSucess!');
for (var i=0; i<contacts.length; i++) {
console.log("Display Name = " + contacts[i].displayName);
}
}
// onError: Failed to get the contacts
//
function onError(contactError) {
alert('onError!');
}
</script>
マニフェストでこの許可を与えました
- android.permission.GET_ACCOUNTS
- android.permission.READ_CONTACTS
- android.permission.WRITE_CONTACTS
&このプラグイン
<plugin name="Contacts" value="com.phonegap.ContactManager"/>
私はphonegapバージョン1.4.1を使用していますが、アプリケーションを実行すると常にalert('OnError');が表示されます。その背後にある理由は何でしょうか?それはバージョン管理の問題ですか?どんなガイドも大歓迎ですありがとう