我的Blade模板中有一个读取状态isLoading
的组件。我似乎从未见过加载组件,因此决定登录Date.now()
来查看Vuex操作的时间:
toggleSwitch: (context, data) => {
context.commit('fetchingAPI', true),
console.log("111", Date.now());
return axios.post(data.url, data.request)
.then((response) =>
context.commit('toggleData', true),
context.commit('fetchingAPI', false),
console.log("222", Date.now())
)
.catch((error) =>
);
},
我的日志显示两个日志的确切时间,这意味着它们同时触发。我在这里做错了什么?