入门指南
核心概念
服务端渲染
开发者指南
- Migrating from Vuex ≤4
- HMR (Hot Module Replacement)
- 测试存储商店
- Usage without setup()
- Composing Stores
- Migrating from 0.x (v1) to v2
API 手册
- API Documentation
- Module: pinia
- Module: @pinia/nuxt
- Module: @pinia/testing
- Enumeration: MutationType
- Interface: TestingOptions
- Interface: DefineSetupStoreOptions
- Interface: DefineStoreOptions
- Interface: DefineStoreOptionsBase
- Interface: DefineStoreOptionsInPlugin
- Interface: MapStoresCustomization
- Interface: Pinia
- Interface: PiniaCustomProperties
- Interface: PiniaCustomStateProperties
- Interface: PiniaPlugin
- Interface: PiniaPluginContext
- Interface: StoreDefinition
- Interface: StoreProperties
- Interface: SubscriptionCallbackMutationDirect
- Interface: SubscriptionCallbackMutationPatchFunction
- Interface: SubscriptionCallbackMutationPatchObject
- Interface: _StoreOnActionListenerContext
- Interface: _StoreWithState
- Interface: _SubscriptionCallbackMutationBase
- Interface: TestingPinia
文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
Composing Stores
组合商店是关于让商店相互使用,这在 Pinia 中得到了支持。 有一条规则要遵循:
如果两个或多个商店相互使用,它们就无法通过 getters 或 actions 创建无限循环。 他们不能两者在他们的设置函数中直接读取彼此的状态:
jsconst useX = defineStore('x', () => {
const y = useY()
// ❌ 这是不可能的,因为 y 也尝试读取 x.name
y.name
function doSomething() {
// ✅ 在计算或动作中读取 y 属性
const yName = y.name
// ...
}
return {
name: ref('I am X'),
}
})
const useY = defineStore('y', () => {
const x = useX()
// ❌ 这是不可能的,因为 x 也尝试读取 y.name
x.name
function doSomething() {
// ✅ 在计算或动作中读取 x 属性
const xName = x.name
// ...
}
return {
name: ref('I am Y'),
}
})
Nested Stores
请注意,如果一个商店使用另一个商店,您可以直接导入并调用_actions_和_getters_中的useStore()
函数。 然后,您可以像在 Vue 组件中一样与商店进行交互。 请参阅 共享获取器 和 共享操作。
当涉及到 setup stores 时,您可以简单地使用 store 函数的 **at top ** 之一:
tsimport { useUserStore } from './user'
export const useCartStore = defineStore('cart', () => {
const user = useUserStore()
const summary = computed(() => {
return `Hi ${user.name}, you have ${state.list.length} items in your cart. It costs ${state.price}.`
})
function purchase() {
return apiPurchase(user.id, this.list)
}
return { summary, purchase }
})
Shared Getters
You can simply call useOtherStore()
inside a getter:
import { defineStore } from 'pinia'
import { useUserStore } from './user'
export const useCartStore = defineStore('cart', {
getters: {
summary(state) {
const user = useUserStore()
return `Hi ${user.name}, you have ${state.list.length} items in your cart. It costs ${state.price}.`
},
},
})
Shared Actions
这同样适用于 actions:
jsimport { defineStore } from 'pinia'
import { useUserStore } from './user'
export const useCartStore = defineStore('cart', {
actions: {
async orderCart() {
const user = useUserStore()
try {
await apiOrderCart(user.token, this.items)
// another action
this.emptyCart()
} catch (err) {
displayError(err)
}
},
},
})
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论