jquery mobileでページ間でパラメータを渡す正しい方法は何ですか? jquery mobileのQ&Aでプラグインの提案がありました。必須ですか?正しい方法を教えてください。具体的な答えは一つではありません。ページ内のすべてのリンクにパラメーターを渡す必要があります。
http://view.jquerymobile.com/master/demos/faq/pass-query-params-to-page.php
jquery mobileでページ間でパラメータを渡す正しい方法は何ですか? jquery mobileのQ&Aでプラグインの提案がありました。必須ですか?正しい方法を教えてください。具体的な答えは一つではありません。ページ内のすべてのリンクにパラメーターを渡す必要があります。
http://view.jquerymobile.com/master/demos/faq/pass-query-params-to-page.php
ページ遷移中に、あるページから別のページにパラメーターを送信することができます。それはいくつかの方法で行うことができます。
参考:https ://stackoverflow.com/a/13932240/1848600
解決策 1:
changePage で値を渡すことができます。
$.mobile.changePage('page2.html', { dataUrl : "page2.html?paremeter=123", data : { 'paremeter' : '123' }, reloadPage : true, changeHash : true });
そして、次のように読みます。
$(document).on('pagebeforeshow', "#index", function (event, data) {
var parameters = $(this).data("url").split("?")[1];;
parameter = parameters.replace("parameter=","");
alert(parameter);
});
index.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="widdiv=device-widdiv, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<title>
</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="http://www.dragan-gaic.info/js/jquery-1.8.2.min.js">
</script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
<script>
$(document).on('pagebeforeshow', "#index",function () {
$(document).on('click', "#changePage",function () {
$.mobile.changePage('second.html', { dataUrl : "second.html?paremeter=123", data : { 'paremeter' : '123' }, reloadPage : false, changeHash : true });
});
});
$(document).on('pagebeforeshow', "#second",function () {
var parameters = $(this).data("url").split("?")[1];;
parameter = parameters.replace("parameter=","");
alert(parameter);
});
</script>
</head>
<body>
<!-- Home -->
<div data-role="page" id="index">
<div data-role="header">
<h3>
First Page
</h3>
</div>
<div data-role="content">
<a data-role="button" id="changePage">Test</a>
</div> <!--content-->
</div><!--page-->
</body>
</html>
second.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="widdiv=device-widdiv, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<title>
</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="http://www.dragan-gaic.info/js/jquery-1.8.2.min.js">
</script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
</head>
<body>
<!-- Home -->
<div data-role="page" id="second">
<div data-role="header">
<h3>
Second Page
</h3>
</div>
<div data-role="content">
</div> <!--content-->
</div><!--page-->
</body>
</html>
解決策 2:
または、ストレージ用に永続的な JavaScript オブジェクトを作成することもできます。ページの読み込みに ajax が使用されている限り (そしてページが再読み込みされない限り)、そのオブジェクトはアクティブなままです。
var storeObject = {
firstname : '',
lastname : ''
}
例: http://jsfiddle.net/Gajotres/9KKbx/
解決策 3:
次のように、前のページからデータにアクセスすることもできます。
$('#index').live('pagebeforeshow', function (e, data) {
alert(data.prevPage.attr('id'));
});
prevPageオブジェクトは完全な前のページを保持します。
解決策 4:
最後の解決策として、localStorage の気の利いた HTML 実装があります。HTML5 ブラウザー (Android および iOS ブラウザーを含む) でのみ機能しますが、保存されたすべてのデータはページの更新によって永続化されます。
if(typeof(Storage)!=="undefined") {
localStorage.firstname="Dragan";
localStorage.lastname="Gaic";
}
例: http://jsfiddle.net/Gajotres/J9NTr/
このトピックについて詳しく知りたい場合は、この記事をご覧ください。例を含むいくつかのソリューションが見つかります。