P粉1067157032023-08-15 12:45:05
我不知道這是否是最好的方法,你也可以考慮 @Estus Flask 的評論:
但我最終選擇將 useMyStore
作為參數傳遞。
請注意,它應該在每個通用操作中調用,因為在 useGeneric()
執行時,store 尚未建立。
下面是程式碼範例:
// 这是一个通用的可组合函数: function export useGeneric(getStore:any) { // 这里的类型定义非常困难,也许使用接口来避免使用 any 是最好的解决方案 function genericAct(){ const store = getStore(); // 这就是我需要的 store.a.value = 42; store.act2(); // 这个操作应该在 store 中使用泛型来实现 } return {genericAct} } // 这是一个使用它的示例 store export const useMyStore = defineStore('myStore', () => { const a = ref(1); const b = ref(1); const {genericAct} = useGeneric(useMyStore); function act2(){ b.value = 43; } return {a, b, genericAct, act2}; }