vue状态管理

使用pinia

// stores/counter.js中
// ref就是state,computed就是getter,函数就是action,没有mutation了
import {ref,} from 'vue'
import {defineStore} from 'pinia'
export const useCounterStore = defineStore('counter', () =>{const ount = ref(0)const doubleCount = computed(() => {count.value * 2})function increment() {count.value++}return {count, doubleCount, increment}
})
// vue文件中
<script setup>import {useCounterStore} from '../stores/counter'const countStore = useCounterStore()
</script>

使用vuex

全景

// Store实例属性
state(根状态,只读)      getters(只读)
// Store实例方法
commit、dispatch、replaceState、watch、registerModule、hasModule
// 辅助函数(mapState、mapGetters、mapActions、mapMutations)
同一个辅助函数可以在同一个组件多次调用,方便在组件中同时获取局部内容和全局内容
辅助函数的返回值都是对象,所以可以使用展开运算符

module

const store = createStore({modules: {account: moduleA,xxx: moduleB}
})
const moduleA = {namespaced: true,state: () => ({ msg: '' }), // -> store.account.msggetters: {isAdmin () { ... } // -> getters['account/isAdmin']},actions: {login () { ... } // -> dispatch('account/login')    ...mapActions('account',[login])},mutations: {login () { ... } // -> commit('account/login')   ...mapMutations('account',[login])},
}
const moduleB = {namespaced: true,state: () => ({ ... }),mutations: { ... },actions: { ... }
}

state

- 定义
state = {count: 0,
}
- 使用
store.state.count
computed:{...mapState(['aa','bb'])		// this.aa
}

getter

- 定义
getters: {//接受如下参数//state,//getters,//rootState,//只在模块中出现//rootGetters,//只在模块中出现doneTodos(state){return state.todos.filter(todo => todo.done)}getTodoById: (state) => (id) => {return state.todos.find(todo => todo.id === id)}
}
- 使用
store.getters.doneTodos
store.getters.getTodoById(2)
computed:{...mapState(['doneTodos','getTodoById'])		// this.getTodoById
}

mutation

改变状态的唯一途径

- 定义
mutations: {//处理函数的第一个参数:state(如果定义在模块中,则为模块的局部状态)//处理函数的第二个参数(可选):payloadincrement (state, payload) {state.count+= payload}
}
- 使用
store.commit('increment',{amount: 10})
methods: {...mapMutation(['increment'])   this.increment
}

action

不可直接改变状态,用来包含异步操作

- 定义
// action的处理函数返回的是promise
actions: {// context对象包含一下属性:// state,相当于store.state,在模块中为局部状态// rootState,只存在于模块当中// commit,相当于store.commit// dispatch,相当于store.dispatch// getters,相当于store.getters// rootGetters,//只存在于模块当中increment (context, payload) {context.commit('increment', payload)},async actionA ({ commit }) {commit('gotData', await getData())},async actionB ({ dispatch, commit }) {await dispatch('actionA') // 等待 actionA 完成commit('gotOtherData', await getOtherData())}
}
- 使用
store.dispatch('incrementAsync', {amount: 10})
methods: {...mapMutation(['increment'])   this.increment
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/777588.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

ChatGPT与传统搜索引擎的区别:智能对话与关键词匹配的差异

引言 随着互联网的快速发展&#xff0c;信息的获取变得比以往任何时候都更加便捷。在数字化时代&#xff0c;人们对于获取准确、及时信息的需求愈发迫切。传统搜索引擎通过关键词匹配的方式为用户提供了大量的信息&#xff0c;然而&#xff0c;这种机械式的检索方式有时候并不…

react+vite+antD+reduce+echarts项目完整记录

reactviteantDreduceecharts项目完整记录 之前写前端项目&#xff0c;都是用的vue&#xff0c;从最开始的vue2到后来的vue3&#xff0c;断断续续写了3年&#xff0c;打包工具也从webpack转到了vite&#xff0c;全局数据管理工具从vuex转到了pinia。总体而言&#xff0c;vue3对…

GNU Radio之OFDM Carrier Allocator底层C++实现

文章目录 前言一、OFDM Carrier Allocator 简介二、底层 C 实现1、make 函数2、ofdm_carrier_allocator_cvc_impl 函数3、calculate_output_stream_length 函数4、work 函数5、~ofdm_carrier_allocator_cvc_impl 函数 三、OFDM 数据格式 前言 OFDM Carrier Allocator 是 OFDM …

微信小程序更换头像的功能

微信小程序开发&#xff0c;个人中心中更换头像的更能使用频率很高&#xff0c;这里记录下实现方式&#xff1a; <view class"setting-list avatar-container"><text>头像</text><view class"avatar"><button hover-class"…

深度学习 Lecture 5 模型评估、诊断方差偏差、合理选择正则化参数

一、模型评估 训练集和测试集 用训练集去训练模型&#xff0c;用测试集去测试模型效果 假设现在有一个问题需要拟合回归方程&#xff0c;那要拟合几阶是最合适的&#xff1f;有以下两种方法&#xff1a; 1. 分别把一阶、二阶、三阶...拟合完后&#xff0c;计算出它们对应的测…

ssm 房屋销售管理系统开发mysql数据库web结构java编程计算机网页源码eclipse项目

一、源码特点 ssm 房屋销售管理系统是一套完善的信息系统&#xff0c;结合springMVC框架完成本系统&#xff0c;对理解JSP java编程开发语言有帮助系统采用SSM框架&#xff08;MVC模式开发&#xff09;&#xff0c;系统具有完整的源代码和数据库&#xff0c;系统主要采用B/S模…

Superset二次开发之webpack.config.js 功能模块解读

webpack.config.js Webpack 构建工具的核心配置文件,它定义了如何处理项目中的源代码,包括编译、转换、合并、分包、压缩等多个环节。 /* eslint-disable no-console */ /*** Licensed to the Apache Software Foundation (ASF) under one* or more contributor license…

Python 的chatGPT API小例子

例子1 Simple from openai import OpenAIclient OpenAI(api_key"xxxxxx",base_url"https://api.chatanywhere.tech/v1" )completion client.chat.completions.create(model"gpt-3.5-turbo",messages[{"role": "system", …

文件上传失败原因分析与解决

图片文件上传失败 问题描述&#xff1a;在前端开发时&#xff0c;需要通过表单元素上传图片或其他文本&#xff0c;但是上传不成功&#xff0c;后端接口也没问题 html <!--onChange用来绑定数据 handleUpload用来提交数据--><form onSubmit{handleUpload}><…

TitanIDE与传统 IDE 比较

与传统IDE的比较 TitanIDE 和传统 IDE 属于不同时代的产物&#xff0c;在手工作坊时代&#xff0c;一切都是那么的自然&#xff0c;开发者习惯 Windows 或 MacOS 原生 IDE。不过&#xff0c;随着时代的变迁&#xff0c;软件行业已经步入云原生时代&#xff0c;TitanIDE 是顺应…

PhpStorm 2023 for Mac/Win:开启PHP集成开发新纪元,让编程更高效更智能

在数字时代的浪潮中&#xff0c;PHP作为一种广泛应用的服务器端脚本语言&#xff0c;其重要性不言而喻。而要在PHP的世界里游刃有余&#xff0c;一款强大的集成开发环境&#xff08;IDE&#xff09;是必不可少的。PhpStorm 2023&#xff0c;正是这样一款能够助您一臂之力的编程…

Github万星项目lobe-chat,连接GPT4GPTs,平替chatgpt-plus

简介 Lobe Chat - 一个开源、高性能的聊天机器人框架&#xff0c;支持语音合成、多模态和可扩展的函数调用插件系统。支持一键免费部署您的私人 ChatGPT/LLM Web 应用程序。 项目地址&#xff1a; GitHub - lobehub/lobe-chat: &#x1f92f; Lobe Chat - an open-source, mo…

第十四届蓝桥杯大赛软件赛省赛C/C++ 大学 B 组(补题)

文章目录 1 日期统计2 01串的熵3 冶炼金属4 飞机降落5 接龙数列6 岛屿个数7 子串简写8 整数删除9 景区导游10 砍树 前言&#xff1a;时隔一年&#xff0c;再次做这套题(去年参赛选手)&#xff0c;差点道心不稳T_T&#xff0c;故作此补题&#xff01; 1 日期统计 没写出来&…

将当前mac地址转换为整数加n后重新转换为Mac地址

将当前Mac转换为整数加1后重新转换为Mac&#xff0c;就解决了进位问题 #include <stdio.h> #include <stdlib.h> #include <string.h>// 将 MAC 地址转换为整数 unsigned long long mac_to_int(char *mac) {char mac_str[18];strcpy(mac_str, mac);char *ptr…

【React】onClick点击事件传参的4种方式

记录React onClick 点击事件传参的 4 种方式 方式一&#xff1a;使用内联箭头函数 import React, { MouseEvent } from "react";function App() {const handleClick (event: MouseEvent<HTMLButtonElement>, name: string) > {console.log(event)console.…

2024蓝桥杯每日一题(背包2)

备战2024年蓝桥杯 -- 每日一题 Python大学A组 试题一&#xff1a;包子凑数 试题二&#xff1a;砝码称重 试题三&#xff1a;倍数问题 试题一&#xff1a;包子称重 【题目描述】 小明几乎每天早晨都会在一家包子铺吃早餐。他发现这家包子铺有 N 种蒸笼&#xf…

解决 docker swarm 节点容器无法获取客户端真实IP

下载工具 https://github.com/sangbobo/docker-ingress-routing-daemon 下载代码 将docker-ingress-routing-daemon放到/usr/bin下 mv docker-ingress-routing-daemon chmod x docker-ingress-routing-daemon设置开启自启 vi /etc/systemd/system/dird.service填入内容 [U…

R语言做两次分类,再做两两T检验,最终输出均值和pvalue

1.输入文件&#xff1a; 2.代码&#xff1a; setwd("E:/R/Rscripts/rG4相关绘图")# 加载所需的库 library(tidyverse)# 读取CSV文件 data <- read.csv("box-cds-ABD-不同类型rg4-2.csv", stringsAsFactors FALSE)# 组合Type1和Type2&#xff1a;通过…

新装debian常用操作

时间ntp apt-get update apt-get install ntp #编辑配置 nano /etc/ntp.conf填写内容如下&#xff1a; server your-ntp-server #(可选&#xff09;如果您的网络中有本地的 NTP 服务器&#xff0c;您可以添加以下行以使用本地服务器 server your-local-ntp-server iburst #重…

unity 2D游戏使用navmashagent遇到的问题

问题描述&#xff1a; 在2D游戏中使用navmashagent来导航的时候&#xff0c;navmashagent会出现x,y轴旋转&#xff0c;且在代码aweak.start中重置依然用的问题。 解决方法 agent.updateRotation false; agent.updateUpAxis false; 解释以下这两个参数 updateRotation up…