ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • [HTML5] Sammy.js 라이브러리로 히스토리 기능 사용 및 페이지 라우트
    프로그래밍/HTML5 Web 2016. 7. 10. 16:57
    반응형


    Ajax로 페이지를 전환하는 웹앱에서 뒤로가기 버튼을 어떻게 처리해야하는지에 대한 문제를 직면하는 경우가 있는데요. 웹브라우저에서 뒤로가기 버튼을 이용한다는것은 웹 브라우저의 기록을 관리하여야한다는 뜻입니다. 그리고 이러한 기록들을 관리하려면 히스토리 객체를 사용하여야합니다.


    이를 위해서 Sammy.js라는 라이브러리를 사용하여야하는데 이 라이브러리는 웹 페이지 라우터 모듈입니다. 라우터 모듈이란 페이지 라우팅을 구현하는 모듈로 클라이언트 요청에 따라 적절한 페이지를 제공하게 합니다. 기존에는 서버에서만 할수 있는 일이었지만 HTML5에서는 클라이언트에서도 사용가능합니다.


    Sammy.JS 라이브러리의 공식홈페이지에 방문하여 관련 문서를 확인합시다.


    [링크] http://www.sammyjs.org/


    참고로 sammy.js 라이브러리는 jQuery 라이브러리로 만들었으므로 jQuery 라이브러리와 함께 사용해야합니다.




    다음 예제를 통해 페이지 라우트에 관한 내용을 알아보겠습니다.


    사용자가 /white 로 접속할 경우 배경색상을 흰색으로, /red로 접속하며 배경색상을 붉은색으로 접속하게하는 코드를 작성해보겠습니다.


    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    <!DOCTYPE html>
     
    <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <meta charset="utf-8" />
        <title>USE Sammy.js</title>
        <script src="https://code.jquery.com/jquery-1.12.4.min.js" integrity="sha256-ZosEbRLbNQzLpnKIkEdrPv7lOy9C27hHQ+Xp8a4MxAQ=" crossorigin="anonymous"></script>
        <script src="sammy.js"></script>
     
        <!-- Page Route -->
        <script>
            var app = Sammy(function () {
                this.get('#/white'function () {
                    $('html').css('background''white');
                });
                this.get('#/red'function () {
                    $('html').css('background''red');
                });
            });
        </script>
     
        <!-- Ready Page Complete -->
        <script>
            $(document).ready(function () {
                app.run('#/white');
            });
        </script>
    </head>
    <body>
        <a href="#/white">WHITE</a>
        <a href="#/red">RED</a>
    </body>
    </html>
    cs


    웹앱을 실행하여 White, Red 태그를 클릭시에 배경화면이 전환되는것이 확인가능합니다.



    위 코드는 해시 기반의 이벤트를 적용하였으므로 뒤로가기 버튼을 사용할수 있습니다. 해시는 웹 페이지 내부에서 추가적인 정보를 전달할 때 사용하는 기능인데 기존의 웹 개발에서는 id 속성을 사용해 특정 위치로 이동하는 기술에 사용했었습니다. 아래의 코드는 move to top 을 클릭시 top 태그로 이동하는 코드입니다.




    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    <!DOCTYPE html>
     
    <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <meta charset="utf-8" />
        <title>Hash</title>
    </head>
    <body id="top">
        <h1>Lorem Ipsum</h1>
        <p>What is Lorem Ipsum?
    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
     
    Why do we use it?
    It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).
     
     
    Where does it come from?
    Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.
     
    The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.
     
    Where can I get some?
    There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>
        <a href="#top">Move To Top</a>
    </body>
    </html>
    cs



    실행 결과는 위의 결과값과 같습니다. Move To Top을 클릭하면 해당 id값으로 위치가 이동합니다.

    반응형

    댓글

Designed by Tistory.