更改哈希而不触发Sammy事件 [英] Change hash without triggering Sammy event

查看:64
本文介绍了更改哈希而不触发Sammy事件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

function UsersVM(start_page){
  var self = this;
  console.log('start form ' + start_page);
  self.go_to = function(page) {
    location.hash = '#Users/' + pageNumber;     
  }
}

Sammy(function() {
    this.get('/app/?#Users/:page', function () {
        var vm = new  UsersVM(this.params.page);
        ko.applyBinding(vm);               
    });
}).run();

我想用以下代码更改页面的哈希值:

I would like to change the page's hash with the following code:

    location.hash = '#Users/' + pageNumber;

但是在这种情况下,Sammy会触发路由.在Backbone中说,我们可以这样操作:

But in this case Sammy triggers routing. Say in Backbone we can do it this way:

    app.navigate("help/troubleshooting", {trigger: false}); 

有可能在Sammy中做到吗? 谢谢!

Is it possible to do it in Sammy? Thanks!

推荐答案

我不知道在Sammy中执行此操作的本机方法,但这是一个对我有用的解决方案:

I don't know of a native way to do this in Sammy, but here is a solution that has worked for me:

var sam = $.sammy(function () {
    var sammy = this; //get a persistent reference to this

    sammy.quiet = false; //set quiet to false by default

    //I set quiet to true before running a route
    sammy.quietRoute = function (location) {
        sammy.quiet = true;
        sammy.setLocation(location);
    }

    //I'm called after every route to reset quiet to false
    sammy.after(function () {
        sammy.quiet = false;
    });

    //I'm a 'normal' route that does not have the capability to be 'quiet'
    this.get('#normalRoute', function () { 
        //routing code 
    });

    //I am a route that can be 'quieted' so that when the url or 
    //hash changes my routing code doesn't run
    this.get('#quietableRoute', function () {
        if (!sammy.quiet) {
            //routing code
        } else {
            return;
        }
    });

});

然后在您的代码中调用quietRoute函数:

Then call the quietRoute function in your code:

//This will work
sam.quietRoute("#quietableRoute");

//This will not work because the "if(!sammy.quiet)..." code has not been 
//implemented on this route
sam.quietRoute("#normalRoute");

这篇关于更改哈希而不触发Sammy事件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆