uniapp辅助函数用法

文章描述:

uniapp辅助方法的应用,当一个组件需要获取多个状态的时候,将这些状态都声明为计算属性会有些重复和冗余。为了解决这个问题,我们可以使用mapState辅助函数帮助我们生成计算属性:

配置 vuex

1.  在项目根目录中创建 store 文件夹,专门用来存放 vuex 相关的模块

2. 在 store 目录上鼠标右键,选择 新建 -> js文件,新建 index.js 文件:

index.js

// 1. 导入 Vue 和 Vuex
import Vue from 'vue'
import VueX from 'vuex'

// 2. 将 Vuex 安装为 Vue 的插件
Vue.use(VueX)

// 3. 创建 Store 的实例对象
const store = new VueX.Store({
	
	// TODO:挂载 store 模块
	state:{
		"username": "jack",
		"age": 18
	}
})

// 4. 向外共享 Store 的实例对象
export default store

3. 在 main.js 中导入 store 实例对象并挂载到 Vue 的实例上:

main.js

默认配置

import App from './App'

// #ifndef VUE3
import Vue from 'vue'
Vue.config.productionTip = false
App.mpType = 'app'
const app = new Vue({
    ...App
})
app.$mount()
// #endif

// #ifdef VUE3
import { createSSRApp } from 'vue'
export function createApp() {
  const app = createSSRApp(App)
  return {
    app
  }
}
// #endif

挂载配置

import App from './App'
// 1. 导入 store 的实例对象
import store from './store'

// #ifndef VUE3
import Vue from 'vue'
Vue.config.productionTip = false
// 省略其它代码...
// Vue.prototype.$store = store

App.mpType = 'app'
const app = new Vue({
    ...App,
	// 2. 将 store 挂载到 Vue 实例上
	store,
})
app.$mount()
// #endif

// #ifdef VUE3
import { createSSRApp } from 'vue'
export function createApp() {
  const app = createSSRApp(App)
  return {
    app
  }
}
// #endif

用法

template

<template>
	<view class="content">
		{{username}} - {{age}}
	</view>
</template>

script

第一种:

import { mapState } from 'vuex'
export default {
	data() {
		return {
			title: 'Hello'
		}
	},
	computed: mapState({
		username: state => state.username,
		age: state => state.age
	}),
}

第二种:

当映射的计算属性的名称与state的子节点名称相同时,我们也可以给mapState传一个字符串数组

computed: mapState([
	'username',
	'age'
]),

第三种:

computed: {
	...mapState({ // 对象展开运算符
		username: function (state) {
			return this.title + '-' + state.username
		},
		age: state => state.age
	})
}

 

发布时间:2022/06/21

发表评论