JQuery 移动版在更改页面时显示加载中断



我正在使用JQM构建一个移动Web应用程序。这是非常基本的,首页显示链接项目的列表。当用户单击链接时,JQM 会动态注入显示项目特定详细信息的页面。问题是,当用户单击链接时,我需要应用程序显示加载动画,而 JQM 通过 ajax 获取页面并显示它。这是代码:

// Listen for any attempts to call changePage().
$( document ).bind( "pagebeforechange", function( e, data ) {
    // We only want to handle changePage() calls where the caller is
    // asking us to load a page by URL.
    if ( typeof data.toPage === "string" ) {
        // We are being asked to load a page by URL, but we only
        // want to handle URLs that request the data for a specific
        // item.
        var u = $.mobile.path.parseUrl( data.toPage ),
            re = /^#item_/;
        if ( u.hash.search(re) !== -1 ) {
            // Show the loading message
            $.mobile.showPageLoadingMsg();
            // We're being asked to display the information for a specific item.
            // Call our internal method that builds the content for the category
            // on the fly based on our in-memory category data structure.
            showPostDetails( u, data.options );
            // Make sure to tell changePage() we've handled this call so it doesn't
            // have to do anything.
            e.preventDefault();
        }
    }
});
// Load the data for a specific item, based on
// the URL passed in. Generate markup for the items in the
// ajax call, inject it into an embedded page, and then make
// that page the current active page.
function showPostDetails( urlObj, options ) {
    // Get the data string
    var IDString = urlObj.hash.replace( /.*show_id=/, "" )
    // Perform ajax to get the other page details
    $.ajax({
        type: 'POST',
        dataType : 'json',
        async: false,
        url: template_url + '/bin/aj_ax.php',
        data: 'post_id=' + IDString + '&ajax-action=get_post_details',
        success: function( data ) {
            // If we are successful
                    // Hide loading message
                    $.mobile.hidePageLoadingMsg();
            if( data.success ) {
                var $page = $( '#item_' ),
                    // Get the header for the page.
                    $header = $page.children( ":jqmData(role=header)" ),
                    // Get the content area element for the page.
                    $content = $page.children( ":jqmData(role=content)" ),
                    // Get the footer area element for the page.
                    $footer = $page.children( ":jqmData(role=footer)" ),
                    // The markup we are going to inject into the content
                    // area of the page.
                    markup = data.content;
                // Find the h1 element in our header and inject the data
                // header attribute to it.
                $header.find( "h1" ).html( data.header );
                // Inject the markup into the content element.
                $content.html( markup );
                // Inject the footer markup
                $footer.html( data.footer );
                // Pages are lazily enhanced. We call page() on the page
                // element to make sure it is always enhanced before we
                // attempt to enhance the markup we just injected.
                // Subsequent calls to page() are ignored since a page/widget
                // can only be enhanced once.
                $page.page();
                // We don't want the data-url of the page we just modified
                // to be the url that shows up in the browser's location field,
                // so set the dataUrl option to the URL for the category
                // we just loaded.
                options.dataUrl = urlObj.href;
                // Now call changePage() and tell it to switch to
                // the page we just modified.
                $.mobile.changePage( $page, options );
                // Refresh the page elements
                $( "div[data-role=page]" ).page( "destroy" ).page();
            }
        }
    });
}

奇怪的是,当我在Win7上使用Firefox时,加载消息显示得很好。但是,当我使用适用于Windows和Android的Google Chrome,用于iOS设备的Android浏览器和Safari时,我一无所获。请让我知道我可能做错了什么。谢谢!

编辑:当我试图找出问题所在时,我意识到当我调用$.mobile.changePage($page,选项)时,加载动画就消失了;会不会有什么问题?

我遇到了完全相同的问题,由于某种原因,调用函数时会出现延迟。 这是我为解决它所做的:

$('html').addClass( "ui-loading" );

您可以按常规方式停止加载微调器:

$.mobile.hidePageLoadingMsg()

我也有类似的问题,并通过在 Ajax 配置中使用 beforeSend 并将显示加载消息放在那里来解决它。

$.ajax({
    type: 'POST',
    dataType : 'json',
    async: false,
    url: template_url + '/bin/aj_ax.php',
    data: 'post_id=' + IDString + '&ajax-action=get_post_details',
    beforeSend: function () {
        $.mobile.showPageLoadingMsg();
    }
    success: function( data ) {
        $.mobile.hidePageLoadingMsg();
    }

。并尝试在pageBeforeChange中评论$.mobile.showPageLoadingMsg()

最新更新