To hashbang or not to hashbang?

前端 未结 3 1812
日久生厌
日久生厌 2020-12-23 16:07

I\'m developing a new website and I\'d like to make use of AJAX as much as possible. Basically, I want users to almost never navigate away from the homepage and have everyth

相关标签:
3条回答
  • 2020-12-23 16:28

    Use jQuery BBQ and use a js function at the top of your pages to check if there is a valid hash, if so, redirect to the page.

    0 讨论(0)
  • 2020-12-23 16:31

    I'm taking the advice from @Daniel Pryden's comment and posting this as an answer instead.

    I had a think about this problem and thought - why not create the website in an old fashioned manner, actual pages and everything but then perform the following steps.

    1. Intercept all internal links on the homepage using jQuery and prepend a hash (#) before the window.location.pathname, thus triggering the hashchange event. (see step 3)
    2. Add a javascript redirect on all pages apart from the homepage to redirect pages back to the homepage, but append the window.location.pathname after a hash (#). For example, Google crawls http://www.domain.com/about-us.aspx but when a user visits the page, they're redirected to http://www.domain.com/#/about-us.aspx
    3. On the homepage, use jQuery BBQ or a similar plugin to listen for the hashchange event including when the page loads so that dynamic content can be loaded. Umbraco can be configured to serve partial or full page content based on whether the request is an AJAX one or not.

    This way, users without Javascript will have a full-blown (semi-good-looking) website, Google will crawl all of the pages without any issues, but users with Javascript will always stay on the homepage - and the cool concept of having a Web App rather than a Web Site will be accomplished.

    0 讨论(0)
  • 2020-12-23 16:32

    Have you also considered to use the HTML5 history session management?

    This way you don't have to use hashes in newer browsers and that way the user won't notice a thing.

    A bit simplified you would do something like this:

    EDIT: updated example.

    function route(path) {
        $.get(path, function(data) {
            //parse data
        });
    }
    
    if (typeof history.pushState !== 'undefined') 
    {
        $(window).bind('popstate', function(e)
        {
            route(window.location.pathname);
        });
        $('a').click(function(event) {
            event.preventDefault();
            history.pushState({},'',this.href);
        });
    } else {
        $(window).bind('hashchange', function(e)
        {
            route(window.location.hash);
        });
        $('a').click(function(event) {
            event.preventDefault();
            $(this).attr('href', '/#'+$(this).attr('href'));
        });
    }
    
    0 讨论(0)
提交回复
热议问题