此jQuery / History.js代码适用于通过Ajax加载内容,方法是单击链接并在浏览器中向后/向前导航,但在手动页面刷新时,历史堆栈/日志将丢失,而不是仅仅加载我之前加载的内容我得到了实际的.erb文件并丢失了页面的样式/格式。
$(function(){
$('.nav-bar li a').on('click', function(event){
var urlPath = $(this).attr('href');
// not implemeneted
var title = urlPath.capitalize();
loadContent(urlPath);
// pushes the current page state onto the history stack, and changes the URL
History.pushState('', null, urlPath);
event.preventDefault();
});
// This event makes sure that the back/forward buttons work too
window.onpopstate = function(event){
console.log("pathname: " + location.pathname);
loadContent(location.pathname);
};
});
function loadContent(url){
// Uses jQuery to load the content
$('#content').load(url+'#content', function(){
console.log("Ajax success"); // Ajax
// bxSlider image slider
$('.bxslider').bxSlider({
adaptiveHeight: true,
mode: 'fade',
captions: true
});
});
}
String.prototype.capitalize = function(){
// add capitalize to string - uppercase the first character, add it to the rest of the word
return this.charAt(0).toUpperCase() + this.slice(1);
}
如何在手动页面刷新中保留数据/历史记录?我尝试将当前的html设置为变量并将其作为pushState()中第一个参数的JSON对象传递,但我相信我可能做错了。实现这个的最佳方法是什么?另外,window.onpopstate函数不会在手动页面刷新时运行,因此我不确定如何访问该对象并获取数据。
我不确定这是多么相关......但我在Sinatra运行这个应用程序
我的layout.erb
<!DOCTYPE html>
<html>
<head>
<title>/title>
<link href="http://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="/css/style.css" media="screen"/>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script src="//browserstate.github.io/history.js/scripts/bundled/html4+html5/jquery.history.js"> </script>
<script src="/js/jquery.bxslider.js"></script>
<script src="/js/jquery.bxslider.min.js"></script>
<link href="/css/jquery.bxslider.css" rel="stylesheet" type="text/css" />
<script src="/js/application.js"></script>
<link rel="shortcut icon" href="/images/favicon.ico" type="image/x-icon">
</head>
<body>
<nav class="nav-bar">
<ul>
<li><a href="/" id="nav-bar">Home</a></li>
<li><a href="about" id="nav-bar">About</a></li>
<li><a href="portfolio" id="nav-bar">Portfolio</a></li>
<li><a href="resume" id="nav-bar">Resume</a></li>
</ul>
</nav>
<%= yield %>
</body>
我的.erb视图的其余部分由一个div组成,其中包含内容ID和其他HTML标记。此外,当ajax调用工作时,它似乎在ajax成功时追加第二个div和内容ID。我该如何预防?
TL; DR
如何通过手动刷新来维护页面状态,而不是在实际视图中加载并丢失格式/样式。
答案 0 :(得分:1)
您已定义
// This event makes sure that the back/forward buttons work too
window.onpopstate = function(event){
console.log("pathname: " + location.pathname);
loadContent(location.pathname);
};
在jQuery块中:
$(function(){
...
)
这会强制它在文档加载后运行,因此直到第一个popstate事件发生后才会定义它。
答案 1 :(得分:0)
您可以使用localStorage
,在第一页中存储您的数据,也可以在任何其他页面上再次获取您的数据。