October 16, 2006


[AJAX Pattern] Amazon A9 Search以文找文

上次在 Amazon 的 A9 Search 看到一個很有趣的 AJAX 應用,看了就很想自己實作看看,實際上也不困難,如果瞭解 AJAX 的原理,Javascript event 處理等就能寫出來了,所以在這裡介紹給大家看看。

[Amazon A9 Search]
傳統的搜尋引擎如 Google 或 Yahoo 等,在將搜尋結果丟出來後,會以分頁來顯示這些結果,使用者想要找的結果如果不是在第一頁的話,就會一頁接著一頁向後找尋。這種作法也沒什麼不對,很直覺,但是我看了 A9 的用法後,我反而覺得 A9 的作法更為實際,更加直覺。A9 怎麼操作的? Scrollbar !

ss
A9 會先丟出前幾筆的結果於網頁上,例如排名前 20 筆,但是當妳使用 Scrollbar 往下拉動時,更多資料就會源源不絕的顯示出來,同時妳也會發現左邊的 Scrollbar 越來越小,代表資料量越來越多。用寫的來描述這行為實在很難,妳可以上 http://www.a9.com ,透過實際操作便可瞭解。為什麼說他更直覺呢?因為如果第一次沒看到你想要的資料時,同時妳又看到 scrollbar 在旁邊,直覺上的操作就是會去拉動 scrollbar ,如同妳在 google 的搜尋結果中,也會拉動瀏覽器視窗的 scrollbar 來看底下的資料,如果沒有再點下一頁,所以既然都在拉動 scrollbar 了,何不在同時也去抓新的資料,所以我說他的操作方式更加直覺。

[怎麼做?]

假設我們想讓內容顯示在一 DIV 區塊中,藉由使用者拖拉 scrollbar 來動態增加顯示內容的話:

第一步、於 DIV 區塊上顯示 scrollbar
這很簡單,只需要透過簡單的 style 屬性設定即可,前提就是妳必須先設定 DIV 區塊高度,並設定屬性 overflow:auto ,例如:
<div id="content" style="width:490px;height:490px; overflow: auto">
....  妳想要顯示的內容。
</div>
當妳於 DIV 區塊中的內容超過 DIV 高度時,瀏覽器便會於右邊出現 scrollbar。

第二步、攔截使用者 scrolling 動作
檢而言之,攔截該 DIV 區塊的 onscroll 事件,例如:
// 注意:以下程式碼使用 prototype.js 語法
$('content').onscroll = checkScroll;
checkScoll 函式便是我們想要處理 scrolling event 的函式。

第三步、呼叫 AJAX,向伺服器要新資料,例如:
// 注意:以下程式碼使用 prototype.js 物件
var opts = new Object;
opts.parameters = 'page=' + page_num;
opts.onComplete = showResponse;
var ajax = new Ajax.Request (url, opts);
page_num ++;

第四步、取得 AJAX 回傳結果,也就是上述程式碼中的 showResponse 函式:
function showResponse(origReq) {
    $('content').innerHTML += origReq.responseText;
}
看,這樣就完成了!超簡單!所以來 re-factoring 一下。

[Refactoring]
我們將這樣的概念稍微把他物件化,讓它可以重複被使用,而且增加一些保護措施。
function showResponse(origReq) {
        var nav = $(this.nav.contentID);
        var last = nav.lastChild;
        while (last.nodeName != 'DIV') {
                last = last.previousSibling;
        }
        nav.removeChild (last);
        nav.innerHTML += origReq.responseText;
        nav.innerHTML += '<div style="background: #AAAAAA;">Fetching ... </div>';
        this.fetching = false;
}

function ScrollNav(contentID, url) {
        this.contentID = contentID;
        this.contentObj = $(contentID);
        this.contentObj.nav = this;  // 記錄目前物件,給 checkScroll 函式使用
        this.fetching = false;
        this.scrollTop = this.contentObj.scrollTop; // 記錄一開始 scrollTop
        this.scrollHeight = this.contentObj.scrollHeight; // 記錄一開始 scrollHeight
        this.url = url;

        this.idx = 0; // page number

        this.checkScroll = function() {
                if(this.nav.scrollTop == this.scrollTop)
                        return;
                if (this.fetching)
                        return;

                this.nav.scrollTop = this.scrollTop;
                if (this.scrollHeight == parseInt(this.style.height) + this.scrollTop) {
                        var opts = new Object;
                        opts.parameters = 'page=' + this.nav.idx;
                        opts.onComplete = showResponse.bind(this);

                        var ajax = new Ajax.Request(this.nav.url, opts);
                        this.fetching = true;
                        this.nav.idx ++;
                }
        }

        // 攔截 onscroll event
        this.contentObj.onscroll = this.checkScroll;
}

function init() {
        var nav = new ScrollNav('content', 'scroll_test.php');
        var nav = new ScrollNav('content2', 'scroll_test2.php');
}

這裡頭有個 ScrollNav 物件,就是將這些東西都包進去了,此外,於 checkScroll 函式中會檢查 event 是否被重複攔截,以及檢查目前 scrollbar 是否被拉動至最下方,唯有 scrollbar 被拉到最下面時,我們才向伺服器要求更多的資料,避免頻寬資源的浪費。scrollTop 跟 scrollHeight 都是內建的屬性,scrollTop 代表目前顯示的 view 距離最上方多少有 pixel,而 scrollHeight 則代表內容 view 的總長,同樣是 pixel,當妳資料越塞越多時,scrollTop 跟 scrollHeight 都會跟著增加,如果要判斷 scrollbar 是否為拉到最下方,最簡單的方法便是計算 scrollTop 和 DIV 區塊的高度總長是否等於 scrollHeight 即可。

至於在 showResponse() 函式中,我們會在每次抓到的新資料中都塞進個「Fetching ...」的字眼,代表目前正在抓取更多資料,這是一種小技巧,就像在大部分的 AJAX Pattern 中都可以看到的 Loading 字眼,妳也可以用個 gif 動畫來取代,只不過每次取得新資料時,必須將上一個「Fetching ...」移除。

想看結果嗎?請看 Demo 。裡頭有兩個 DIV 區塊,左邊的 DIV 區塊所 request 的 PHP 檔執行較快,而右邊的每次都會 sleep 5 秒鐘,所以感覺起來比較慢,拉動兩個 scrollbar 妳便可以發覺兩者間的不同。

[其他問題?]
目前這個範例還有些存在性的問題:
  1. 別吃光 browser 的記憶體了。塞資料時要設立停止點,別一直狂塞,吃光妳瀏覽器的記憶體了。
  2. 不一定要拉動到最下方才開始抓取資料,可以在使用者的 scrollbar 接近最下方時,便向伺服器要求新資料,可以達到更順暢的操作。


[這可以應用在哪?]< br/> 我想這些概念,實作都是很簡單,重要的是妳有沒有創意,有沒有想到這些 idea,以及怎麼應用在妳的網頁中,這我想應該讓妳自己去想想看,不過我覺得可以應用在某些功能上,例如 blog 留言版,留言版並不是每個人都想看,如果留言眾多時,每次都將留言塞到使用者的瀏覽器上也不甚合理,如果透過類似的方法,先讓使用者看到最新的留言,如果想繼續看下去,只需要拉動 scrollbar 即可。應該還可以想出更多有趣的應用,不過還是大家自己想想看吧。







Posted by at 天空部落 │21:22 │回應(2)引用(0)Programming
相關閱讀

引用URL

http://blog.yam.com/syshen/trackback/6574505
回應文章
這個 MS Live Search 也都有,
只是我不知道是誰先弄出來的。
Posted by 張小P at 2006-10-22 03:25:57
Join YouTube for a free account, or log in if you are already a member. Car Porn: Wired a 00:53 Your Account, Help & Info, YouTube
YouTube - Teen Titans go!!!!
Amateur babe gets fucked hard - free porn videos, sex movies, adult clips. Lovely brunette teen gives a great blow job and then gets fucked on the couch

<a href=http://testyoufrr.hostshield.com>anal sex videos</a> <a href=http://blptytomcb.hostmysite101.com>anal massage</a> <a href=http://rywupdtuvj.w3bzone.com>anal fuck</a> <a href=http://houussaq.10gbfreehost.com>anal lesbians</a> <a href=http://gotiiiroe.10gbfreehost.com>porn video</a> <a href=http://forioozz.hostedwith.us>free sex videos</a> <a href=http://testyoufrr.101freehost.com>milf sex</a> <a href=http://nywsycrlfs.hostshield.com>teen anal</a> <a href=http://forioozz.rack111.com>first time sex</a> <a href=http://nfryzvtumq.hothostcity.com>porn video</a> <a href=http://nylgoouplv.gigazu.net>kiddie porn</a> <a href=http://olivertyy.hostrator.com>hentai anal</a> <a href=http://ghjkyyy.900megs.com>hot anal sex</a> <a href=http://zvkfakkqgt.247ihost.com>anal teen</a> <a href=http://nvmdlfuerz.2222mb.com>sex stories post</a> <a href=http://olivertyy.1stfreehosting.com>deep anal</a> <a href=http://ghjkyyy.10gbfreehost.com>college sex</a> <a href=http://mhyprzftzp.hostrator.com>rape porn</a> <a href=http://vfssza.c0n.us>free gay porn</a> <a href=http://gottussa.yourfreehosting.net>free anal sex</a> <a href=http://topadjikks.omgfreehost.com>tila tequila sex</a> <a href=http://testyoufrr.hostaim.com>double anal</a> <a href=http://jjufddra.10gbfreehost.com>virgin sex</a> <a href=http://gottussa.101freehost.com>anal lesbian</a> <a href=http://ghjkyyy.gigazu.net>anal insertion</a>
Buy adult dvd movies in every genre. Shop for adult dvds & videos of all types. www.porno-tube.eu - Added: 07-11-30 - Alexa Rating
TubeHunter downloads videos from YouTube, MySpace, Metacafe, Pornotube, Dailymotion, ZC iPhone Converter create iphone movie and iphone music

<a href=http://pdcyvavrpx.prv.pl>anal sex videos</a> <a href=http://bvpfyjorbi.prv.pl>toon sex</a> <a href=http://nedfwbcvlr.prv.pl>sex pictures</a> <a href=http://puhdabrgsa.prv.pl>free sex videos</a> <a href=http://raftiigksu.prv.pl>mature porn</a> <a href=http://yuirmqngut.prv.pl>japanese anal</a> <a href=http://tiwgbzhvbg.prv.pl>sex porn</a> <a href=http://rbxojhbomz.prv.pl>anal licking</a> <a href=http://nsergudpmh.prv.pl>huge anal</a> <a href=http://ncmqaksihc.prv.pl>anal insertions</a> <a href=http://douudrqzik.prv.pl>free sex</a> <a href=http://ikczdkjaca.prv.pl>japanese anal</a> <a href=http://flxuyzxuxy.prv.pl>granny anal</a> <a href=http://lyxnxynkzm.prv.pl>amateur anal</a> <a href=http://pvojmflhza.prv.pl>free porn vids</a> <a href=http://clpvmzejav.prv.pl>sex pictures</a> <a href=http://bsyotsajda.prv.pl>virgin anal</a> <a href=http://gzniiddwpl.prv.pl>free porn videos</a> <a href=http://kiublirrnj.prv.pl>midget porn</a> <a href=http://goemntdzcc.prv.pl>anal destruction</a> <a href=http://ducdvfjqhc.prv.pl>free sex clips</a> <a href=http://sdtoybxzdy.prv.pl>homemade porn</a> <a href=http://whdxtiewmd.prv.pl>redhead anal</a> <a href=http://cedxvlehha.prv.pl>ebony anal</a> <a href=http://zottydpllh.prv.pl>sexo anal</a> <a href=http://jcpnwwnzrw.prv.pl>sex</a> <a href=http://zjeqazohab.prv.pl>africa sex movies</a> <a href=http://ykjptdaskx.prv.pl>free sex pics</a> <a href=http://umvuapcnzm.prv.pl>having sex</a> <a href=http://iczmeybgrf.prv.pl>farm sex</a>
YouTube - Carmen Electra Fantasia Erotica
Movie Quotes Bank. MovieQuotes runs by contribution by its talented members. We would like to thank all members for Striptease - 1996 Movie Quotes

<a href=http://members.lycos.co.uk/fanof3pw/viewtopic.php?p=378#378>media porn</a> <a href=http://cherryhotspots.com/modules.php?name=Forums&file=viewtopic&p=130817&sid=60d5ac0da4e03f4a8814943ecf13ae8f#130817>indian gay porn free</a> <a href=http://wir7.de/JesusDeinLicht/Christliches-Forum/viewtopic.php?p=30082#30082>illegal lesbian preteen porn</a> <a href=http://www.concretedisciples.com/forum/index.php?action=vthread&forum=28&topic=3594#newreply>xxxhard free porn</a> <a href=http://www.syedjohn.com/forum/viewtopic.php?p=74475#74475>cartoon porn from cartoon network</a> <a href=http://boutikco.lca-solutions.com/forums/viewtopic.php?p=45947#45947>top 100 lolita porn</a> <a href=http://big-list.ru/forum//viewtopic.php?p=205999#205999>worlds best free porn site</a> <a href=http://www.fulfillinglifesmission.com/forum/index.php?action=vthread&forum=8&topic=115#newreply>porn star identifier</a> <a href=http://begierde.lima-city.de/viewtopic.php?p=28951#28951>porn games and pics</a> <a href=http://www.hsib.ru/forum/viewtopic.php?p=109528#109528>top 100 porn stars of 2007</a> <a href=http://www.brc.liv.pl/viewtopic.php?p=7590#7590>porn p2p</a> <a href=http://www.burmaforums.info/viewtopic.php?p=474305#474305>voilent porn</a> <a href=http://buendnis04.de/jeansjoe/forum//viewtopic.php?p=153767#153767>porn links free</a> <a href=http://observatorio.rdl.org.sv/modules.php?name=Forums&file=viewtopic&p=268868&sid=45546938ff79a39b1dc6d1b861a49664#268868>degi porn</a> <a href=http://www.forum.pacogames.com/viewtopic.php?p=147643#147643>stormy daniels porn free</a> <a href=http://ebwu.de/phpBB2//viewtopic.php?p=63257#63257>drunk porn glory hole porn</a> <a href=http://observatorio.rdl.org.sv/modules.php?name=Forums&file=viewtopic&p=265571&sid=d1075dbf44030b8de5869b31eeb4081d#265571>latin ass porn</a> <a href=http://www.uruberlus.com/delires.test/viewtopic.php?p=65695>brittany porn</a> <a href=http://www.pappers51.nu/f_rum/viewtopic.php?p=48656#48656>arrons gay porn</a> <a href=http://www.erasmusprague.com/forum/index.php?action=vthread&forum=5&topic=15042#newreply>gay porn photos</a> <a href=http://www.compulinkht.com/forum/viewtopic.php?p=10821#10821>free porn tube stites</a> <a href=http://www.12webspace.de/modules.php?name=Forums&file=viewtopic&p=95333#95333>fsker porn</a> <a href=http://www.fitnessfx.ca/form/viewtopic.php?p=53008#53008>free teen porn pictures</a> <a href=http://minusinsk.info/forum/viewtopic.php?p=20764#20764>porn by women</a> <a href=http://www.streetbasket-ball.com/viewtopic.php?p=32365#32365>porn search engine hos</a>
Oral Tradition seeks to provide a comparative and interdisciplinary focus for studies in oral literature and related fields by publishing research and
YouTube - Britain Loves Ron Paul!
Posted by Ingequepe at 2008-09-10 08:00:16