我正在使用 jquery-ui datepicker 在几天之间导航我的应用程序。问题是我从视图中调用transtionTo,我的印象是这是错误的。
这是代码:
http://jsfiddle.net/arenoir/rjVUN/
App.CalendarView = Ember.View.extend({
tagName: 'div',
didInsertElement: function() {
var router;
router = this.get('controller.target.router');
this.$().datepicker({
dateFormat: "yy-mm-dd",
onSelect: function(dateText, instance) {
router.transitionTo('show', {day: dateText});
}
});
}
});
有没有更好的办法?