gpt4 book ai didi

javascript - 刷新后如何使用 url 哈希加载特定页面?

转载 作者:行者123 更新时间:2023-11-29 09:52:28 27 4
gpt4 key购买 nike

因此,我使用 url 哈希帮助我在 hashchange 上显示特定内容。现在,当我处理某些特定内容并刷新整个页面时,我在 url 中有该散列,但仍然没有获得该散列指示的内容。

假设我的网址是:http://localhost/user 然后我点击了详细信息,它把我的 url 变成了以下内容:http://localhost/user#!details我有详细信息页面。

但是当我重新加载页面时,将上面的作为我的 url,哈希保持不变并且哈希没有变化,它不会调用我与 hashchange 事件绑定(bind)的函数。

此外,每次用户使用 beforeunload 重新加载时,我都无法在不发送 ajax 请求的情况下将哈希发送到服务器端。

有什么建议吗?

我的代码:

var pages = {};
pages['home'] = ""; pages['details'] = ""; pages['reviews'] = ""; pages['favs'] = "";
pages['likes'] = "", pages['gallery'] = "", pages['visited'] = "", pages['coupons'] = "";

$(window).bind('hashchange', function(event) {
var curr_hash = event.target.location.hash;
var page_to_load = curr_hash.substr(2);
var loadurl = "/ci_theyaw/user/user_" + page_to_load;
load_page(loadurl, page_to_load);
});

function load_page(page, toload){

// alert(pages[toload]);

if(pages[toload] == "") {
var post_data = {
'<?php echo $this->security->get_csrf_token_name(); ?>' : '<?php echo $this->security->get_csrf_hash(); ?>'
};

$.ajax({
type: 'POST',
url: page,
data: post_data,
dataType: "html",
success : function(data) {
page[toload] = data;
$('.right-pane').html(data);
},
error : function(xhr, ajaxOptions, thrownError){
alert(xhr.status);
console.log(xhr.responseText);
alert(thrownError);
}
});
}

else {
$('.right-pane').html(page[toload]);
}
}

最佳答案

您需要在加载时运行附加到 hashchange 的代码,以防有人刷新页面,甚至直接在浏览器中键入它。试试这个:

var hashUpdate = function(curr_hash) {
var page_to_load = curr_hash.substr(2);
var loadurl = "/ci_theyaw/user/user_" + page_to_load;
load_page(loadurl, page_to_load);
}

$(window).bind('hashchange', function(e) {
hashUpdate(e.target.location.hash);
});
window.location.hash && hashUpdate(window.location.hash); // onload, if there was a fragment in the URL

关于javascript - 刷新后如何使用 url 哈希加载特定页面?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19706223/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com