如果我在主干路由器中启用 pushState,是否需要在所有链接上使用 return false 或主干是否自动处理?是否有任何示例,包括 html 部分和脚本部分。
Backbone.js 和 pushState
IT技术
javascript
backbone.js
2021-03-05 00:10:00
4个回答
这是 Tim Branyen 在他的样板文件中使用的模式:
initializeRouter: function () {
Backbone.history.start({ pushState: true });
$(document).on('click', 'a:not([data-bypass])', function (evt) {
var href = $(this).attr('href');
var protocol = this.protocol + '//';
if (href.slice(protocol.length) !== protocol) {
evt.preventDefault();
app.router.navigate(href, true);
}
});
}
使用它,而不是单独对链接执行 preventDefault ,您让路由器默认处理它们并通过具有data-bypass
属性来进行例外处理。根据我的经验,它可以很好地作为一种模式。我不知道周围有什么很好的例子,但自己尝试一下应该不会太难。Backbone 的美在于它的简单性 ;)
$(document.body).on('click', 'a', function(e){
e.preventDefault();
Backbone.history.navigate(e.currentTarget.pathname, {trigger: true});
});
match()
或startsWith()
(ES 6) 也可用于检查协议。如果您想按pathname
属性支持绝对网址,请检查基本网址location.origin
。
function(evt) {
var target = evt.currentTarget;
var href = target.getAttribute('href');
if (!href.match(/^https?:\/\//)) {
Backbone.history.navigate(href, true);
evt.preventDefault();
}
// or
var protocol = target.protocol;
if (!href.startsWith(protocol)) {
// ...
}
// or
// http://stackoverflow.com/a/25495161/531320
if (!window.location.origin) {
window.location.origin = window.location.protocol
+ "//" + window.location.hostname
+ (window.location.port ? ':' + window.location.port: '');
}
var absolute_url = target.href;
var base_url = location.origin;
var pathname = target.pathname;
if (absolute_url.startsWith(base_url)) {
Backbone.history.navigate(pathname, true);
evt.preventDefault();
}
}
您可以防止<a>
在 html中点击标签的默认行为。只需在<script />
标签内添加以下代码即可。
<script>
$(document).on("click", "a", function(e)
{
e.preventDefault();
var href = $(e.currentTarget).attr('href');
router.navigate(href, true);router
});
</script>
其它你可能感兴趣的问题