react umi model使用注意事项
组件中使用model时候,一定要监听到具体的字段:
比如 const { handlingPhone } = useModel("common", (model) => ({
handlingPhone: model.handlingPhone,
}));
不要图省事直接写 const { handlingPhone } = useModel("common")
这样的话会监听整个model对象,其他字段改变,即使 handlingPhone不变,也会导致组件函数重新执行

浙公网安备 33010602011771号