pjax = pushState + ajax

=======================

pjax是一个jQuery插件,它使用ajax和pushState通过真正的永久链接,页面标题和后退按钮提供快速浏览体验。

pjax的工作方式是通过ajax从服务器获取HTML,然后用加载的HTML替换页面上容器元素的内容。然后,它使用pushState更新浏览器中的当前URL。由于以下两个原因,这导致页面导航更快:

没有页面资源(JS,CSS)被重新执行或重新应用;

如果将服务器配置为使用pjax,则它只能渲染部分页面内容,因此避免了可能昂贵的完整布局渲染。

该项目的状态

此时,jquery-pjax基本上不再需要维护。它可能会继续收到重要的错误修复,但是_其功能集被冻结_,不太可能获得新功能或增强功能。

安装

pjax取决于jQuery 1.8或更高版本。

$ npm install jquery-pjax

standalone script

Download and include jquery.pjax.js in your web page:

curl -LO https://raw.github.com/defunkt/jquery-pjax/master/jquery.pjax.js

Usage

$.fn.pjax

The simplest and most common use of pjax looks like this:

$(document).pjax('a', '#pjax-container')

This will enable pjax on all links on the page and designate the container as #pjax-container.

If you are migrating an existing site, you probably don't want to enable pjax

everywhere just yet. Instead of using a global selector like a, try annotating

pjaxable links with data-pjax, then use 'a[data-pjax]' as your selector. Or,

try this selector that matches any links inside a `

data-pjax>` container:

$(document).pjax('[data-pjax] a, a[data-pjax]', '#pjax-container')

Server-side configuration

Ideally, your server should detect pjax requests by looking at the special

X-PJAX HTTP header, and render only the HTML meant to replace the contents of

the container element (#pjax-container in our example) without the rest of

the page layout. Here is an example of how this might be done in Ruby on Rails:

def index

if request.headers['X-PJAX']

render :layout => false

end

end

If you'd like a more automatic solution than pjax for Rails check out [Turbolinks][].

Check if there is a pjax plugin for your favorite server framework.

Arguments

The synopsis for the $.fn.pjax function is:

$(document).pjax(selector, [container], options)

selector is a string to be used for click event delegation.

container is a string selector that uniquely identifies the pjax container.

options is an object with keys described below.

pjax options

key

default

description

timeout

650

ajax timeout in milliseconds after which a full refresh is forced

push

true

use [pushState][] to add a browser history entry upon navigation

replace

false

replace URL without adding browser history entry

maxCacheLength

20

maximum cache size for previous container contents

version

a string or function returning the current pjax version

scrollTo

0

vertical position to scroll to after navigation. To avoid changing scroll position, pass false.

type

"GET"

see [$.ajax][]

dataType

"html"

see [$.ajax][]

container

CSS selector for the element where content should be replaced

url

link.href

a string or function that returns the URL for the ajax request

target

link

eventually the relatedTarget value for pjax events

fragment

CSS selector for the fragment to extract from ajax response

You can change the defaults globally by writing to the $.pjax.defaults object:

$.pjax.defaults.timeout = 1200

$.pjax.click

This is a lower level function used by $.fn.pjax itself. It allows you to get a little more control over the pjax event handling.

This example uses the current click context to set an ancestor element as the container:

if ($.support.pjax) {

$(document).on('click', 'a[data-pjax]', function(event) {

var container = $(this).closest('[data-pjax-container]')

var containerSelector = '#' + container.id

$.pjax.click(event, {container: containerSelector})

})

}

NOTE Use the explicit $.support.pjax guard. We aren't using $.fn.pjax so we should avoid binding this event handler unless the browser is actually going to use pjax.

$.pjax.submit

Submits a form via pjax.

$(document).on('submit', 'form[data-pjax]', function(event) {

$.pjax.submit(event, '#pjax-container')

})

$.pjax.reload

Initiates a request for the current URL to the server using pjax mechanism and replaces the container with the response. Does not add a browser history entry.

$.pjax.reload('#pjax-container', options)

$.pjax

Manual pjax invocation. Used mainly when you want to start a pjax request in a handler that didn't originate from a click. If you can get access to a click event, consider $.pjax.click(event) instead.

function applyFilters() {

var url = urlForFilters()

$.pjax({url: url, container: '#pjax-container'})

}

Events

All pjax events except pjax:click & pjax:clicked are fired from the pjax

container element.

event

cancel

arguments

notes

event lifecycle upon following a pjaxed link

pjax:click

✔︎

options

fires from a link that got activated; cancel to prevent pjax

pjax:beforeSend

✔︎

xhr, options

can set XHR headers

pjax:start

xhr, options

pjax:send

xhr, options

pjax:clicked

options

fires after pjax has started from a link that got clicked

pjax:beforeReplace

contents, options

before replacing HTML with content loaded from the server

pjax:success

data, status, xhr, options

after replacing HTML content loaded from the server

pjax:timeout

✔︎

xhr, options

fires after options.timeout; will hard refresh unless canceled

pjax:error

✔︎

xhr, textStatus, error, options

on ajax error; will hard refresh unless canceled

pjax:complete

xhr, textStatus, options

always fires after ajax, regardless of result

pjax:end

xhr, options

event lifecycle on browser Back/Forward navigation

pjax:popstate

event direction property: "back"/"forward"

pjax:start

null, options

before replacing content

pjax:beforeReplace

contents, options

right before replacing HTML with content from cache

pjax:end

null, options

after replacing content

pjax:send & pjax:complete are a good pair of events to use if you are implementing a

loading indicator. They'll only be triggered if an actual XHR request is made,

not if the content is loaded from cache:

$(document).on('pjax:send', function() {

$('#loading').show()

})

$(document).on('pjax:complete', function() {

$('#loading').hide()

})

An example of canceling a pjax:timeout event would be to disable the fallback

timeout behavior if a spinner is being shown:

$(document).on('pjax:timeout', function(event) {

// Prevent default timeout redirection behavior

event.preventDefault()

})

Advanced configuration

Reinitializing plugins/widget on new page content

The whole point of pjax is that it fetches and inserts new content without

refreshing the page. However, other jQuery plugins or libraries that are set to

react on page loaded event (such as DOMContentLoaded) will not pick up on

these changes. Therefore, it's usually a good idea to configure these plugins to

reinitialize in the scope of the updated page content. This can be done like so:

$(document).on('ready pjax:end', function(event) {

$(event.target).initializeMyPlugin()

})

This will make $.fn.initializeMyPlugin() be called at the document level on

normal page load, and on the container level after any pjax navigation (either

after clicking on a link or going Back in the browser).

Response types that force a reload

By default, pjax will force a full reload of the page if it receives one of the

following responses from the server:

Page content that includes when fragment selector wasn't explicitly

configured. Pjax presumes that the server's response hasn't been properly

configured for pjax. If fragment pjax option is given, pjax will extract the

content based on that selector.

Page content that is blank. Pjax assumes that the server is unable to deliver

proper pjax contents.

HTTP response code that is 4xx or 5xx, indicating some server error.

Affecting the browser URL

If the server needs to affect the URL which will appear in the browser URL after

pjax navigation (like HTTP redirects work for normal requests), it can set the

X-PJAX-URL header:

def index

request.headers['X-PJAX-URL'] = "http://example.com/hello"

end

Layout Reloading

Layouts can be forced to do a hard reload when assets or html changes.

First set the initial layout version in your header with a custom meta tag.

Then from the server side, set the X-PJAX-Version header to the same.

if request.headers['X-PJAX']

response.headers['X-PJAX-Version'] = "v123"

end

Deploying a deploy, bumping the version constant to force clients to do a full reload the next request getting the new layout and assets.

pjax和ajax区别,啥是pjax?相关推荐

  1. jQuery Pjax于ajax的区别

    最近小松发现了Pjax的技术,本来想把这个用到自己的博客上,相信还是算了吧,之后找个时间在搞 ajax ajax技术应该大家都知道就是用来后台与服务器进行少量数据交换,也就不用刷新页面就能看到数据内容 ...

  2. [js] pjax和ajax的区别是什么?

    [js] pjax和ajax的区别是什么? pjax 是一个 jQuery 插件,它通过 ajax 和 pushState 技术提供了极速的(无刷新 ajax 加载)浏览体验,并且保持了真实的地址.网 ...

  3. PHP全站pjax影响收录,WordPress实现全站PJAX

    什么是PJAX pjax = pushState + ajax pjax是一个Query插件,它通过ajax和pushState技术提供了极速的(无刷新ajax加载)浏览体验,并且保持了真实的地址.网 ...

  4. 和ajax区别_AJAX、Fetch和Axios的细微区别

    前端技术真的是一个发展非常飞快地领域,现在只知道原生的XHR和Jquery AJAX是不能满足开发的需求的,现在axios和fetch已经开始抢占"请求"这个前端高地了,今天就给阐 ...

  5. axios和ajax区别

    1.区别 axios是通过promise实现对ajax技术的一种封装,就像jQuery实现ajax封装一样. 简单来说: ajax技术实现了网页的局部数据刷新,axios实现了对ajax的封装. ax ...

  6. webservice和ajax区别,WebService简单介绍

    提醒: 从实现效果来看,webservice和servlet是很相似的. 重大提示:创建一个Web Project也能有相当效果.其实这个就是Ajax的调用. 区别: 1.请求:servlet是接受简 ...

  7. axios与ajax区别

    1.jQuery ajax $.ajax({ type: 'POST', url: url, data: data, dataType: dataType, success: function () ...

  8. 会话和连接的区别_websocket和ajax区别,只有这5点不同

    本质是有区别的,socket是一个长连接,启动后会一直连接,而且服务端和客户端都可以主动发送信息,主要用于实时通讯和业务推送等,ajax就是一个短连接.只能有客户端发起请求,然后一次请求完成之后就关闭 ...

  9. java pjax_GitHub - szyjava/pjax: ajax + history.pushState = pjax

    介绍 pjax是对ajax + pushState的封装,让你可以很方便的使用pushState技术. 同时支持了缓存和本地存储,下次访问的时候直接读取本地数据,无需在次访问. 并且展现方式支持动画技 ...

最新文章

  1. 石家庄的联通破网络,请大家鉴定
  2. Linux下 su命令与su - 命令的区别
  3. 京东零售CEO徐雷升任京东集团总裁,刘强东:将把更多时间投入乡村振兴等事业中...
  4. 生产者/消费者模式(阻塞队列)
  5. spring @Transactional注解参数详解
  6. java面试和笔试大全
  7. Checkpoint IC_WEBCLIENT_PROCESS_CNTRL_DBG
  8. 软件开发工具(第2章:软件开发过程及其组织)
  9. jsap支付_Java命令行界面(第20部分):JSAP
  10. 游标迭代器(过滤器)——Scan
  11. 记录——《C Primer Plus (第五版)》第十章编程练习第八题
  12. Vue.js 学习笔记 十一 自定义指令
  13. p1口实验_「正点原子NANO STM32开发板资料连载」第二章 实验硬件资源详解
  14. windows下安装openssl工具及生成pfx文件
  15. CSDN会员他到底有什么用?
  16. android 程序优化
  17. html5 视差地图,高性能的视差动画
  18. 黑链暗链事件的爆发式增长
  19. 基于jsp和servlet的蛋糕店售卖网站商城系统javaweb点心铺源码mysql
  20. 基于单片机的十字路口交通灯课程设计

热门文章

  1. 【重要】ETF基金和LOF基金的区别和买卖
  2. OPhone 3D开发之解析渲染MS3D模型
  3. JavaScript函数式编程(一)\(二)\(三)
  4. 清北复交人浙南,都有哪些CS院校推荐?
  5. Chrome自签名证书配置
  6. 荣耀路由(WS831)做无线中继时LAN网段与WAN网段冲突解决方法
  7. Spring 注解 @Qualifier 详细解析
  8. c语言runtime error,Runtime Error通常是什么原因的?程序在这!
  9. 【QT课程设计】一:基本布局设计与选择图片功能
  10. Python打招呼函数