我试图消除动作中的任何东西,它以一种或另一种方式被吞没......
采取这个(伪)代码:
import { debounce } from "lodash";
const actions = {
debounceSomeLogging ({ dispatch }, text) {
console.log("Outside debounced function.");
debounce(function() {
console.log("Inside debounced function.");
dispatch("doRealThing");
}, 1000);
},
doRealThing({ commit }) {
// Whatever
}
}
当我调用该操作时,我看到了Outside debounced function
,但我看不到其他日志记录并且其他操作没有被触发。
任何人都有这方面的经验,可以指出我正确的方向吗?