一,開篇分析
好了,廢話不多說,直接進(jìn)入今天的主題,今天主要講的是“History API”及在單頁應(yīng)用中的作用,并且會(huì)引入一個(gè)實(shí)際的例子做為講解的原型范例,先來看看“History API”:
為了提高Web頁面的響應(yīng)速度,越來越多的開發(fā)者開始采用單頁面結(jié)構(gòu)(single-page application)的解決方案。所謂的單頁面結(jié)構(gòu)就是指多個(gè)頁面間切換時(shí),不刷新當(dāng)前整個(gè)頁面,更新頁面展示數(shù)據(jù),并且相應(yīng)地改變地址欄中的url,以使用戶可以分享這個(gè)url。
如果你使用chrome或者firefox等瀏覽器訪問"github.com、plus.google.com"等網(wǎng)站時(shí),細(xì)心的你會(huì)發(fā)現(xiàn)頁面之間的點(diǎn)擊是通過ajax異步請(qǐng)求的,
同時(shí)頁面的URL發(fā)生了了改變。并且能夠很好的支持瀏覽器前進(jìn)和后退。是什么有這么強(qiáng)大的功能呢?恩,這就會(huì)說到今天的主角,HTML5里引用了新的API:
“history.pushState”和“history.replaceState”,就是通過這個(gè)接口做到無刷新改變頁面URL的。先來看看"history"接口的詳細(xì)方法:
interface History {
readonly attribute long length;
readonly attribute any state;
void go(optional long delta);
void back();
void forward();
void pushState(any data, DOMString title, optional DOMString? url = null);
void replaceState(any data, DOMString title, optional DOMString? url = null);
};
(二),重點(diǎn)API說明
在這里說明一點(diǎn):"window.history.replaceState"和"window.history.pushState"類似,不同之處在于replaceState不會(huì)在window.history里新增歷史記錄點(diǎn),其效果類似于window.location.replace(url),都是不會(huì)在歷史記錄點(diǎn)里新增一個(gè)記錄點(diǎn)的。當(dāng)你為了響應(yīng)用戶的某些操作,而要更新當(dāng)前歷史記錄條目的狀態(tài)對(duì)象或URL時(shí),使用replaceState()方法會(huì)特別合適。
(三),引入實(shí)例
今天說說單頁應(yīng)用中我們通常會(huì)這樣做,有一個(gè)菜單列表,點(diǎn)擊相關(guān)菜單項(xiàng)然后動(dòng)態(tài)加載相關(guān)模塊,所有方式都是基于異步請(qǐng)求的,美中不足是,我們會(huì)發(fā)現(xiàn)地址欄不會(huì)有任何變化,以及瀏覽器中的前進(jìn)和后退操作也不會(huì)有任何響應(yīng),這對(duì)用戶不是很友好,所以為了解決這個(gè)問題“History”就有用武之地了,那么如何做到的那?不急先看一下例子中的效果圖展示,然后一步步分析,如下所示:
以下是監(jiān)測數(shù)據(jù),相同的url再次刷新不會(huì)重復(fù)請(qǐng)求。
我們梳理一下流程:
頁面首次載入,雖然我們?cè)L問的URL是"http://localhost:8888/bbSPA.html",但是,實(shí)際URL確是:
"http://localhost:8888/bbSPA.html#shanghai",”history.replaceState“完成了初始化url切換工作,并且初始做了加載
"shanghai.data"的數(shù)據(jù)工作,鼠標(biāo)點(diǎn)擊左邊的任意一個(gè)菜單項(xiàng),右側(cè)內(nèi)容是Ajax載入,并且頁面的URL隨之發(fā)生改變,例如,點(diǎn)擊北京。
此時(shí),我們點(diǎn)擊地址欄的后退按鈕,又回到了上海,并且顯示內(nèi)容。原理很簡單,就是通過監(jiān)聽”window.onpopstate“,達(dá)到了自由切換的作用。
好了!其實(shí)很簡單大家也嘗試自己實(shí)踐一下,以下是完整代碼:
?。?),html部分代碼
<body>
<center>
<Strong>bbSPA測試頁面</strong>
</center>
<hr>
<ul
id="list"
style="float:left;
list-style:none;"
>
<li><a href="#beijing">北京</a></li>
<li><a href="#shanghai">上海</a></li>
<li><a href="#shenzhen">深圳</a></li>
<li><a href="#guangzhou">廣州</a></li>
<li><a href="#tianjin">天津</a></li>
</ul>
<div
id="content-main"
style="margin-left:50px;
float:left;
width:220px;
border:1px solid #ccc;
height:120px;
color:#ff3300;"
>
</div>
</body>
(2),Js部分代碼
$(function(){
_init() ;
}) ;
var _history = [] ; // 記錄hash的活動(dòng)數(shù)據(jù)容器
function _init(){
var root = $("#list") ;
var defaultHash = root.find("li a").eq(1).attr("href") ;
var currentHash = window.location.hash ;
_addToHistory(defaultHash,true) ;
if(currentHash && currentHash != defaultHash){
_showContent((currentHash.split("#")[1])) ;
}
else{
_showContent((defaultHash.split("#")[1])) ;
}
$("#list").on("click","a",function(e){
var action = ($(this).attr("href").split("#")[1]) ;
_showContent(action) ;
e.preventDefault() ;
}) ;
window.addEventListener("popstate",function(e){
if(e.state && e.state.hash){
var hash = e.state.hash ;
if(_history[1] && hash === _history[1].hash){//存在歷史記錄,證明是后退事件
_showContent(hash.split("#")[1].toLowerCase()) ;
}else{ // 其它認(rèn)為是非法后退或者前進(jìn)
return ;
}
}
else{
return ;
}
},false) ;
} ;
function _showContent(action){
var samePage = _history[0]["hash"] == "#" + action ;
if(samePage){ // 同頁面,則不重新加載
return ;
}
_loadContent(action + ".data").done(function(data){
_renderContent(data["content"]) ;
_addToHistory("#" + action,samePage) ;
}).fail(function(){
throw new Error("load content error !") ;
}) ;
} ;
function _loadContent(url){
return $.ajax({
url : url ,
dataType : "json"
}) ;
} ;
function _renderContent(text){
$("#content-main").text(text) ;
} ;
function _addToHistory(hash,noState){
var obj = {
hash : hash
} ;
if(noState){
_history.shift(obj) ;
window.history.replaceState(obj,"",hash) ;
}
else{
window.history.pushState(obj,"",hash) ;
}
_history.unshift(obj) ;
} ;
(四),最后總結(jié)
?。?),理解History Api的使用方式以及具體實(shí)例中使用的目的是為了解決哪些問題。
?。?),兩個(gè)核心Api的不同之處在哪。
?。?),測試本例子的注意事項(xiàng)如下。
測試需要搭建一個(gè)web服務(wù)器,以http://host/的形式去訪問才能生效,如果你在本地測試以file://這樣的方式在瀏覽器打開,就會(huì)出現(xiàn)如下的問題:
Uncaught SecurityError: A history state object with URL 'file:///C:/xxx/xxx/xxx/xxx.html' cannot be created in a document with origin 'null'.
因?yàn)槟阋猵ushState的url與當(dāng)前頁面的url必須是同源的,而file://形式打開的頁面是沒有origin的,所以會(huì)報(bào)這個(gè)錯(cuò)誤。
以上就是本文的全部內(nèi)容了,希望大家能夠喜歡。