const channel = await ServiceWorkerChannel.createFromPage()
const response = await channel.publish('getCart', { userId: '123' })
if (response.ret === ReturnCode.Success) {
console.log('购物车数据:', response.data)
}
channel.subscribe('directMessage', ({ data }) => {
console.log('收到消息:', data.message)
return { received: true }
})