私はそのような問題を抱えています: URL「/年/xxxx/月/yy/日/zz」で日付ピッカーを作成する必要があります。ここで、xxxx、yy、および zz は、選択した日付の年、月、日になります。
このコードは、インデックス ページの URL を生成するためのものです。
App.Router.map(function () {
this.resource('years', {path: '/'},function(){
this.resource("year", { path: "/year/:year_id" }, function() {
this.resource("month",{path:"/month/:month_id"},function(){
this.resource("day",{path:"/day/:day_id"});
});
});
});
});
App.YearsRoute = Ember.Route.extend({
redirect: function(param)
{
var rec =App.Model.createRecord({
year:2013,
month:8,
day:28,
id:1
});
this.transitionTo('year',rec);
}
});
App.YearRoute = Ember.Route.extend({
redirect:function(param){
this.transitionTo('month',param);
},
serialize:function(param){
return {year_id: param.get('year')};
}
});
App.MonthRoute = Ember.Route.extend({
redirect:function(param)
{
this.transitionTo('day',param);
},
serialize:function(param){
return {month_id:param.get('month')};
}
});
App.DayRoute = Ember.Route.extend({
serialize:function(param){
return {day_id:param.get('day')};
}
});
年/月/日を変更し、それらとハンドルロジックを含む場所を変更するボタンを作成する方法は?