Как мне преобразовать этот код в FlowRouter?
Я только использовал Iron-router нечетко, и в его нынешнем виде я хочу преобразовать из проекта, который я нашел очень полезным, который использовал Iron-router. Как лучше всего адаптировать этот код для использования Flowrouter?
CourseController = AppController.extend({
waitOn: function() {
// course ID
var courseID = this.params._id;
// Course subscriptions
return [
// Wait for the course to be available
this.subscribe("singleCourse", courseID),
];
},
data: function () {
// Return the course
return Courses.findOne();
},
onAfterAction: function () {
// Get the course ID from the URL parameters
var courseID = this.params._id;
// TODO: uncomment the following and figure out why it is generating a browser console error
// Get the course from the database
//var course = Courses.find(courseID).fetch()[0]; // select the zeroeth array item
// Set the site title for SEO
//Meta.setTitle(course.title);
}
});