我正在尝试使用queryParams
来更新和刷新模型。我已经设置了要使用的操作,route-action
因为触发操作的更改事件位于组件内。我已经安装ember-route-action-helper
并且更改事件正常工作,但transitionTo
没有更新。
在filter-list.hbs
<input type="checkbox"
class="filter-checkbox inp-{{value.filterValueId}}"
value="{{value.filterValueId}}"
onchange={{route-action "updateQuery" value.filterValueId list.filterId}}>
在routes/results.js
export default Ember.Route.extend({
queryParams: {
status: {
refreshModel:true
},
owner: {
refreshModel:true
}
},
params: null,
model(params) {
this.set('params', params);
return Ember.RSVP.hash({
result: this.store.query('result', params),
filter: this.store.findAll('filter'),
params: params,
});
},
setupController(controller, model) {
this._super(...arguments);
controller.set('result', model.result);
controller.set('filter', model.filter);
controller.set('params', model.params);
},
actions: {
newParams(data){
console.log("Received", data);
},
updateQuery: function() {
//I make a URL string here from multiple checkboxes
//and parse the URL string as a JSON object which is
//modeled the same as a normal queryParameter
let newParams = JSON.parse('{"' + decodeURI(urlString).replace(/"/g, '\\"').replace(/&/g, '","').replace(/=/g,'":"') + '"}')
console.log(newParams);
this.transitionTo({queryParams: {newParams}});
}
}
因此,我首先params
从 URL 中提取并发送它们以获取结果并填充过滤器列表(带有过滤器名称的复选框列表)。每次我单击过滤器时,如果它看到复选框已更改,它会updateQuery
使用route-action
.
操作运行(并且我在控制台中得到了正确的newParams
输出。不起作用的行是this.transitionT()
。转换没有做任何事情。它没有更新模型,也没有更改 URL,什么都没有。
我错过了什么?