单页站点优劣
传输数据少
服务可不中断
前后端开发更规范
首次加载数据大耗时长
极差的SEO(搜索引擎优化)
导航需要人为处理
单页应用的实现方式
iframe
ajax+div+historyapi
基于iframe制作单页博客
$('a[target="contentFrame"]').click(function(){
var $this = $(this),
url = $this.attr('href'),
mainHost = location.host,
i = url.indexOf(mainHost);
$active.removeClass('active');
$active = $this.parent('li');
$active.addClass('active');
if(i !== -1){
url = url.substr(i + mainHost.length);
}
window.location.hash = '#' + url;
return false;
});
在iframe页面(子页面)中,也有一段类似的js,为iframe中的页面超链接绑定事件
$('a').click(function(){
var url = $(this).attr('href')
if(url && url != '#' && url.indexOf('http') == 0){
var mainHost = window.parent.location.host,
i = url.indexOf(mainHost);
if(i !== -1){
url = url.substr(i + mainHost.length);
}
window.parent.location.hash = '#' + url;
}
return false;
});
注意这两段代码,修改的都是父文档(顶层窗口)地址栏的hash值。所以,只需要在父文档中监听onhashchange事件,在事件响应中设置iframe的src 进而load子页面。
$container = $('div.page-body > iframe');
window.onhashchange = function(){
$container.attr('src',location.hash.substring(1));
};
iframe高度不能根据内容自适应,需要在子页面load之后刷新iframe的高度
var refreshHeight = function(){
var $this = $container,
minHeight = $('.page-right').height() - $('.top-menu').height() - 20,
contentHeight = $this.contents().find('body').height() + 10;
$this.height(contentHeight < minHeight ? minHeight : contentHeight);
}; $container.load(function(){
refreshHeight();
});
// 首次刷新,否则加载过程中会看到白框
refreshHeight();
到这里基本已经实现任意跳转、回退、前进页面不再刷新整个页面。下面的代码是为了解决当打开多个顶层文档时(开多个窗口),音乐不重复播放,方法也很简单,在localStorage中记录顶层文档的数量,每开一个新窗口加1,关闭时减1,只要记录数大于1便不自动播放。
if(window.localStorage){
var $window = $(window);
$window.on('beforeunload',function(){
console.log('-1');
localStorage.framePage = localStorage.framePage - 1;
}); window.addEventListener("storage", function(e){
console.log("oldValue: "+ e.oldValue + " newValue:" + e.newValue)
});
}
var autoplay = location.host !== 'movesun.qq.com';
if(window.localStorage){
if(Number(localStorage.framePage) >= 1){
autoplay = false;
} if(isNaN(localStorage.framePage) || Number(localStorage.framePage) <= 0) localStorage.framePage = 1;
else {
localStorage.framePage = Number(localStorage.framePage) + 1;
}
}
博客依然有两个问题需要解决
1、目前的浏览器已经支持记录iframe变更的历史记录,通过hash记录历史就显的没有必要了。目前网站每次跳转实际产生了两条历史记录。后面找时间移出hash记录或者禁用iframe历史记录
2、考虑到搜索引擎收录的超链接应该是非hash模式的url,比如用户看到的是movesun.com/#/blog/list ,而实际收录的却是movesun.com/blog/list,通过site:movesun.com指令搜索也可以看到
直接访问这类url地址,将直接打开iframe里的内容,所以,当用户直接点击搜索引擎的结果进入博客时,应该将用户跳转到hash模式,页面才能正常显示,但这样对搜索引擎而言,会陷入一个无限循环,影响搜索引擎收录。
前端因直接面向用户,使得技术也更新迭代的频繁,前端开发人员也需要不断学习以追赶时代的潮流。而反观后台技术,十年来都没什么及其巨大的变化,很多技术经久不衰,后端开发完全有一招鲜吃遍天的架势。这也是的前端人员比较抢手,在一些公司都存在前端与后台人力严重不平衡的现像,十几位后台搭配一位前端的事情,也不是没有,奇货可居,优秀的前端是非常吃香的。