Capturing params change on same route

Hi ,

If i navigate from one route to another route , i am able to capture params using : controller : Ember.Controller.extend({ queryParams: [“sk”,“isFFT”], test1: null, test2: null });

In route : queryParams: { test1: { refreshModel: true }, test2:{ refreshModel: true } },

But if i change params on same route i am not able to capture params it gives null , if i refresh browser then i am able to capture . i want to capture params change on same route without browser refresh . Please guide me on same

Sorry correct sample : If i navigate from one route to another route , i am able to capture params using : controller : Ember.Controller.extend({ queryParams: [“test1”,“test2”], test1: null, test2: null });

In route : queryParams: { test1: { refreshModel: true }, test2:{ refreshModel: true } },