码迷,mamicode.com
首页 > 移动开发 > 详细

May we can use Turbolinks or Pjax in our web apps

时间:2014-07-18 21:03:11      阅读:253      评论:0      收藏:0      [点我收藏+]

标签:http   java   io   html   javascript   re   

Turbolinks[1]:

Turbolinks makes following links in your web application faster.
Instead of letting the browser recompile the JavaScript and CSS between each page change,
it keeps the current page instance alive and replaces only the body and the title in the head.

This is similar to pjax, but instead of worrying about what element on the page to replace,
and tailoring the server-side response to fit, we replace the entire body.
This means that you get the bulk of the speed benefits from pjax (no recompiling of the JavaScript or CSS)
without having to tailor the server-side response. It just works.

Pjax[2]:

pjax = pushState + ajax
pjax is a jQuery plugin that uses ajax and pushState to deliver a fast browsing experience with real permalinks,
page titles, and a working back button.

pjax works by grabbing html from your server via ajax and replacing the content of a container on your page with the ajax‘d html.
It then updates the browser‘s current url using pushState without reloading your page‘s layout or any resources (js, css),
giving the appearance of a fast, full page load. But really it‘s just ajax and pushState.

[1] https://github.com/rails/turbolinks
[2] https://github.com/defunkt/jquery-pjax

May we can use Turbolinks or Pjax in our web apps,布布扣,bubuko.com

May we can use Turbolinks or Pjax in our web apps

标签:http   java   io   html   javascript   re   

原文地址:http://www.cnblogs.com/LiuXianBlog/p/3850430.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!