这是我的路由器 -
this.resource('lead');
我正在过渡到这样的领导路线 -
var requestedCourseId = 102;
this.transitionTo('lead', {queryParams: {courseId: requestedCourseId}});
如何访问coureId
中的queryParams中发送的LeadController
?
答案 0 :(得分:0)
首先添加' queryParams:[' courseId']'给你的控制器。 你可以拨打' this.get(' courseId')'在控制器实例中,它的值是102。
App.LeadController = Ember.Controller.extend({
courseId: null,
queryParams: ['courseId']
});