ここで実際の質問は何ですか?これは私にはよくわかりません。
したがって、現在のアクションハンドラは次のようになります。
showComment : function(comment){
//do your stuff with the model
}
これで、目的のソリューションは次のようになります。
<a {{action showCommentById comment_id href=true}}>Show</a>
そして対応するハンドラー:
showCommentById : function(commentId){
var comment = App.Comment.findById(commentId); // i assume you have this retrieval method or something like it
this.showComment(comment);
},
showComment : function(comment){
//do your stuff with the model
}
これはあなたの場合に機能しますか?それとも何か他のことを意図していましたか?
更新:OPは、ルート内のすべてのデータ処理を希望します。ルートは、
以前に提案したアクション「showCommentById」を処理する必要があります。
App.ArticlesRoute = Ember.Route.extend({
events : {
showCommentById : function(commentId){
var comment = App.Comment.findByIds(commentId); // i assume you have this retrieval
this.transitionTo("root.articles.comment", comment);
}
}
});
したがって、実際には、アプリのアクションを処理する場所を自由に決めることができます。