如图中,store.findRecord('r1',3).then(res => {}),store.findRecord('r2',5).then(res => {}),record3.save().then(res => {});这三个都会发送http请求,但是会合并为一个请求,只请求一次,别人说可以利用定时器的事件循环来实现,我完全没思路,求助大神指教,给出思路也行。
store.findRecord('r1',3).then(res => {})
store.findRecord('r2',5).then(res => {})
record3.save().then(res => {})
LEATH
相关分类