jQuery Mobile:获取通过 changePage 传递给页面的数据

Posted

技术标签:

【中文标题】jQuery Mobile:获取通过 changePage 传递给页面的数据【英文标题】:jQuery Mobile: Get data passed to page via changePage 【发布时间】:2013-03-28 06:18:44 【问题描述】:

我正在尝试将一个对象从一个页面传递到另一个页面,根据 JQM 文档,这应该是正确的:

$.mobile.changePage( "about/us.html",  data: paramUno:"Uno", paramDos:11 );

我的问题是,一旦加载了 us.html,我不确定访问这些值的最佳方式。我为pageshowpagebeforeshowpageinitpagechange 添加了页面事件回调,并且在每种情况下,event.data 都是undefined。这样做的正确方法是什么?我宁愿不使用 localStorage 或全局/命名空间变量,除非这是我唯一的选择。

谢谢!

【问题讨论】:

【参考方案1】:

解决方案

这样发送:

$.mobile.changePage('page2.html',  dataUrl : "page2.html?parameter=123", data :  'paremeter' : '123' , reloadPage : true, changeHash : true );

然后像这样阅读它们:

$("#index").live('pagebeforeshow', function (event, data) 
    var parameters = $(this).data("url").split("?")[1];;
    parameter = parameters.replace("parameter=","");  
    alert(parameter);    
);

更多示例可以在这里找到:jQuery Mobile: document ready vs page events,只需查找章节:页面转换之间的数据/参数操作

示例:

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>

更多信息

如果您想了解有关此主题的更多信息,请查看此 article。您会发现几个带有示例的解决方案。

【讨论】:

请问您为什么要在 dataUrl 和 data 字段中指定参数?您不能仅在数据字段中指定参数并仅从它们中检索它吗? @jonney -- 我支持这个问题。为什么不直接在数据对象中指定数据,这是一个更简洁的实现,设置和检索机器人? 是的,一开始我以为我要疯了,因为我看到了两次指定数据的答案 答案似乎演示了从dataURL获取数据的示例。数据字段呢? Here 说“顺便说一句,changePage 函数还将作为“数据”传递的参数附加到页面 URL,因此从这个意义上说,上述两个选项是相同的。所以您必须自己处理检索数据. 我以为 JQuery 或 JQuery Mobile 都会有方便的函数来检索 URL 参数,但令人惊讶的是他们没有。所以它是一样的。

以上是关于jQuery Mobile:获取通过 changePage 传递给页面的数据的主要内容,如果未能解决你的问题,请参考以下文章

jQuery Mobile中jQuery.mobile.changePage方法使用详解

导航Jquery Mobile + PhoneGap

jquery mobile style不适用于常规选择

jquery中怎么样获取表单所有值

jquery mobile 如何获取触摸的坐标

jQuery Mobile:在列表视图数据拆分图标上更改/切换主题