这是我想出的解决方案:
App.MonthRoute = Ember.Route.extend({
setupController: function(controller, model) {
controller.set('model', model);
this.controllerFor('application').set('activeMonth', model.get('id'));
}
});
现在我ApplicationController
总是知道“选定的月份”。我可以在我的 datepicker 视图的 init 中使用它来正确设置日期:
App.DatepickerView = Ember.View.extend({
didInsertElement: function() {
var _this = this;
$('#dp').datepicker({
'format': 'M yyyy',
'minViewMode': 'months',
})
.on('changeDate', function(e) {
$(this).datepicker('hide');
var id = $(this).datepicker().data('date').replace(" ", "-"),
month = App.Month.find(id);
_this.get('controller').transitionToRoute('month', month);
});
// right here:
if (this.get('controller.activeMonth')) {
$('#dp').datepicker('setDate', this.get('controller.activeMonth'));
}
}
});
欢迎任何其他答案/建议。