react umi model使用注意事项

组件中使用model时候,一定要监听到具体的字段:
比如 const { handlingPhone } = useModel("common", (model) => ({
handlingPhone: model.handlingPhone,
}));

不要图省事直接写 const { handlingPhone } = useModel("common")
这样的话会监听整个model对象,其他字段改变,即使 handlingPhone不变,也会导致组件函数重新执行

posted @ 2026-02-03 15:45  ฅ˙-˙ฅ  阅读(2)  评论(0)    收藏  举报