上两篇文章说过要写一个简单的单页应用例子的, 迟迟没有兑诺, 实在有愧 哈哈。这篇写给小白用户哈。
正好趁今天风和日丽,事情不多, 把从项目里的代码扣取了一下, 整理了一个简单的例子。
因为我们生产项目用到es6 还有构建工具,为了让例子足够简单和原生,除了一个zepto,连require都是我之前写的文章里的实现的,很简单70行代码。
事例地址
github:https://github.com/skyweaver213/simple-spa
demo: https://skyweaver213.github.io/simple-spa/example/demo/index.html
单页应用
单页应用是指在浏览器中运行的应用,它们在使用期间不会重新加载页面。像所有的应用一样,它旨在帮助用户完成任务,比如“编写文档”或者“管理Web服务器”。可以认为单页应用是一种从Web服务器加载的富客户端。(摘自:http://blog.csdn.net/zuoninger/article/details/38842823)
如何实现
单页应用 说白了就是不用刷新页面,例如首页点击 查询到 列表页,一般给一个过场动画,从而优化用户的体验。但是往往单页应用首次加载时间比较长,因为很多人往往把代码都打进首屏里了。
然后能不能做到既要极速打开首屏体验,也要保留单页的流程用户体验呢?
这时候 极致的按需, 能把这个问题 迎刃而解。
截图为例, 例如绿色的其实就是用户打开这个页面首先最关心的部分,我们把这部分归入到首屏里,然后待首屏渲染成功后,再异步 require 其他首屏之额的模块,例如我蓝色框住的信息和操作。
例如这样。
//航班卡片渲染
flightInfo.render(orderDetail, orderDetailInfo);
//价格render
pricetotal.render(orderDetail, orderDetailInfo); //异步模块加载
this.loadAsynModules();
this.loadAsynXprdModules();
1、单页的核心实现
利用了浏览器 支持历史记录操作,pushState 和popstate (如果不支持这个属性的浏览器可以用hashchange这个事件代替,移动端基本都支持了)
没了解过这个属性的 可以看看 张鑫旭的 :http://www.zhangxinxu.com/wordpress/2013/06/html5-history-api-pushstate-replacestate-ajax/
流程大概是这样
拉取html:
var me = this;
//获取html
$.ajax({
url: htmlPath,
type: 'get',
success: function (data) {
//console.log('ss data ', data);
getScript(data, me);
},
error: function (e) {
console.log('error ', e);
} });
html 内容:
<div class="main-viewport">
<div class="viewport index-viewport" data-no-init="true">
<style>
.index-viewport {
background: cornflowerblue;
}
</style> <div class="viewport-content">
index <button class="js_tolist"> to list </button>
</div> <script type="text/fscript" data-src="./js/index.js" ></script>
</div>
</div>
注意 script是 data-src ,因为是单页代码动态引入,然后拉取html成功后 会自动关联viewport下的script,再读取data-src的内容,然后动态引入script资源。
动态引入js:
//取scripts的绝对路径 如果不是绝对路径 ,需要动态计算
var script_path = scripts[0].getAttribute('data-src') || ''; require([script_path], function (exports) { var view = cloneObj(exports.view); view.htmlPath = htmlPath;
view.viewPort = $("[page-path='" + htmlPath + "']");
view.$ = function (selector) {
return view.viewPort.find(selector);
};
//每创建一个view 把引用存起来
DF.VIEWREF[htmlPath] = view; //如果上一个view存在
scope.preView && scope.preView.onHide.apply(scope.preView); //加载页面完成后
scope.fishLoad(htmlPath, pushState, search); view && view.onCreate.apply(view);
//绑定事件
if (view && view.events) {
DF.bindEventAction.call(view, view.events);
} view && view.onShow.apply(view);
if (view.onAppear) {
DF.onAppear = view.onAppear;
}
scope.updatePageid(view); });
js动态引入成功后,再执行单页的生命周期。
分别是
onCreate 页面创建的时候执行, 只执行一次
onShow 页面创建后会执行, 每次切换下一个页面会执行
onHide 页面切换的时候,上一个页面隐藏的时候会执行
然后资源加载成功,页面渲染成功后, 会pushSate,修改浏览器地址
//fishLoad
fishLoad: function (htmlPath, pushState, search) {
//记录上一个页面
if (this.curView) {
this.preView = this.curView;
} else {
this.preView = DF.VIEWREF[htmlPath];
} search = search || ''; //设置当前view
this.curView = DF.VIEWREF[htmlPath]; //console.log('curview ', this.curView.htmlPath, ' preView ', this.preView.htmlPath) //渲染成功
if (pushState) {
history.pushState({
'viewPath': htmlPath,
'pro': 'spa',
'url': htmlPath
}, "页面标题", htmlPath + search);
} },
back回退的:
back: function () {
history.back();
}, //history.back 会触发 popstate,然后会重新走loadView逻辑
$(window).bind("popstate.pageview", function (e) { //是单页spa操作 才触发
if (this.getViewPath(location.href) != this.curView.htmlPath) {
/*
* 该干嘛干嘛
*/
var pat = new RegExp(FHYBRID.appPath, 'i');
DF.loadView(location.pathname.replace(pat, ''), false, false, true);
} }.bind(this));
动画过渡:
//动画执行方法
/**
* @param animInitClass 动画初始化时候的class
* @param animBeforeClass 动画执行前的class
* @param animEndClass 动画执行后的class
*/
viewAnimation: function (opt) {
var $static_el = opt.staticView;
var $anim_el = opt.animView;
var $anim_init_class = opt.animInitClass;
var $anim_before_class = opt.animBeforeClass;
var $anim_end_rmclass = opt.animEndClass;
var anim_type = opt.animType || 'in'; //动画是进入 还是 出 ; in or out $anim_el.addClass($anim_init_class); //进入 动画节点 显示, 出, 对上一个页面显示
(anim_type == 'in') ? $anim_el.show() : $static_el.show(); setTimeout(function () {
$anim_el.addClass($anim_before_class); $anim_el.on('webkitTransitionEnd', function () {
//进入 对上一个页面隐藏; 出 动画节点 隐藏,
(anim_type == 'in') ? $static_el.hide() : $anim_el.hide(); $anim_el.removeClass($anim_end_rmclass);
$anim_el.off('webkitTransitionEnd');
});
}, 0); },
调用:
//切换动画
this.viewAnimation({
staticView: this.preView.viewPort,
animView: this.curView.viewPort,
animType: 'in',
animInitClass: 'ui-page-right ui-transition',
animBeforeClass: 'ui-page-center-i',
animEndClass: 'ui-page-right ui-transition ui-page-center-i'
});
最后 请看我上面的事例,一共三个页面:
index.html
list.html
booking.html
首先执行 index onCreate -> 然后执行 index onShow ;点击tolist; 执行 index onHide 然后执行 list onCreate-> list onShow;