如何将活动类分配给ampersand.js中的当前路由链接?

时间:2016-03-11 15:24:27

标签: javascript backbone.js ampersand ampersand.js

我有这些路线:

routes: {
   '': 'index',
   'lifestyle': 'lifestyle',
   'about': 'about'
},

index: function() {

},

lifestyle: function() {

},

about: function() { 

}

如何确定哪一条是有效路线,以便我可以分配“有效”路线。类到相应的导航链接?

1 个答案:

答案 0 :(得分:0)

最简单的方法是收听路由器发出的View myView = findViewById(R.id.my_view); myView.setOnTouchListener(new OnTouchListener() { public boolean onTouch(View v, MotionEvent event) { // Whatever you want to do.... you can update a boolean flag or anything else return true; } }); 事件,并在触发时分配route类。对于active定义:

routes

你可以这样听routes: { '': 'index', 'lifestyle': 'lifestyle', 'about': 'about' } 事件:

route

另请查看last paragraph of the documentation