我有这些路线:
routes: {
'': 'index',
'lifestyle': 'lifestyle',
'about': 'about'
},
index: function() {
},
lifestyle: function() {
},
about: function() {
}
如何确定哪一条是有效路线,以便我可以分配“有效”路线。类到相应的导航链接?
答案 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