私はphonegapでモバイルアプリに取り組んでおり、次のようにページ間で変数を渡す必要があります:http: //coenraets.org/apps/directory/jqm/index.html
しかし、私の問題は、phpファイルを使用できないことです。どうやってやるの ?ありがとうございました :)
ここで言及されているLocalStorageを試しました:http://docs.phonegap.com/en/1.6.1/cordova_storage_storage.md.html#localStorageが 機能しません:これが私のコードです:
ページ1 :
$(data).find("Book").each(function () {
var temp = $(this).find("name").text();
var temp1 = $("#champ").val().replace(" ", "") ;
if (temp1 != "") {
if (temp.toLowerCase().search(myRegExp) > -1) {
$("#result_list").append("<li><a href='recherche_details.html' data-transition='pop'><img src='images/a.jpg' /><p><strong>Titre : " + temp + "</strong></p><p>Auteur : " + $(this).find("address").text() + "</p><p>Pays : " + $(this).find("country").text() + "</p></a></li>").listview("refresh") ;
$envoi_search.attr("disabled", "");
// Using the LocalStorage
window.localStorage.setItem("titre" + i, temp);
i++ ;
}
}
});
2ページ :
<script type="text/javascript" charset="utf-8">
// Wait for Cordova to load
document.addEventListener("deviceready", onDeviceReady, false);
// Cordova is ready
function onDeviceReady() {
// keyname is now equal to "key"
var value = window.localStorage.getItem("titre0");
$("#result").append("Yoooo" + value + " !! you are here") ;
}
</script>
しかし、それは機能しません。何か考えはありますか?