最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

VUEX:store,在HBuilder中實現(xiàn)vuex,可以進行點擊加減號后數(shù)值改變等等【詩書畫唱】

2021-05-19 23:15 作者:詩書畫唱  | 我要投稿

目錄:

知識

顯示store中變量值到HTML頁面的方法就是使用this.$store.state

個人理解:vuex類似于封裝,像一個管理很多呈現(xiàn)在HTML界面的倉庫(store),這個vuex的store倉庫里有很多車間,某個車間都是做不同的業(yè)務(wù)處理,mutations就是進行和修改內(nèi)容的函數(shù)有關(guān)的業(yè)務(wù),比如放?increment(s){s.count ++}之類的函數(shù)。



例子

例子1:在HBuilder中實現(xiàn)vuex,可以進行點擊加號按鈕后,數(shù)字+1,點擊減號按鈕后數(shù)字-1,點擊“改變”按鈕后,原本HTML界面的'你好'的文本變成'再見',并且每次點擊“改變”按鈕,數(shù)字的數(shù)值+7



例子2:在VScode中實現(xiàn)vuex,可以進行點擊加號按鈕后,數(shù)字+1,點擊減號按鈕后數(shù)字-1,點擊“改變”按鈕后,原本HTML界面的'你好'的文本變成'再見'


demo.vue

index.js

main.js

知識

vue全家桶:vue腳本庫+router路由+axios跨域訪問+vuex存放項目全局數(shù)據(jù)倉庫+ui界面

"vuex:核心是一個store的對象,可以存放數(shù)據(jù)這些數(shù)據(jù)在任何的組件上都可以使用。

你可以對這些數(shù)據(jù)進行操作(這些數(shù)據(jù)不能夠直接修改)"

組件之間或者頁面之間需要傳遞數(shù)據(jù)的話,就可以把這些數(shù)據(jù)存放到store里面,store相當于application一樣。


如果你的項目比較簡單,建議不要使用vuex。


let store = {flag:true,ct:10};

store.flag = false;//這樣直接修改是不行的,沒有用



顯示store中變量值到HTML頁面的方法就是使用this.$store.state


個人理解:vuex類似于封裝,像一個管理很多呈現(xiàn)在HTML界面的倉庫(store),這個vuex的store倉庫里有很多車間,某個車間都是做不同的業(yè)務(wù)處理,mutations就是進行和修改內(nèi)容的函數(shù)有關(guān)的業(yè)務(wù),比如放?increment(s){s.count ++}之類的函數(shù)。


例子

例子1:在HBuilder中實現(xiàn)vuex,可以進行點擊加號按鈕后,數(shù)字+1,點擊減號按鈕后數(shù)字-1,點擊“改變”按鈕后,原本HTML界面的'你好'的文本變成'再見',并且每次點擊“改變”按鈕,數(shù)字的數(shù)值+7



<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title></title>

<script type="text/javascript" srcc="js/vue.js" ></script>

<script type="text/javascript" srcc="js/vuex.js" ></script>

</head>

<body>

<div id="app">

<input type="button" value="+" @click="add" />

<h1>{{this.$store.state.count}}</h1>

<input type="button" value="-" @click="reduce"/>

<h1>{{this.$store.getters.deal}}</h1>

<input type="button" value="改變文本并且每次點一次都數(shù)字加7" @click="change"/>

</div>

<script>

//獲取全局數(shù)據(jù)倉庫

let store = new Vuex.Store({

state: {

count: 0,

isShow:true

},

getters: {

deal(s){

return s.isShow ? '你好' : '再見';

}

},

mutations: {

increment(s){s.count ++},

inreduce(s){s.count --},

inchange(s,num){

s.count += num;

s.isShow = false;

}

},

actions: {

cg(ctx,num){//ctx就是store對象

ctx.commit('inchange',num);

}

}

});

new Vue({

el: '#app',

store,

methods: {

add(){

//不能夠直接修改store.state.count的值

this.$store.commit('increment');

},

reduce(){

this.$store.commit('inreduce');

},

change(){

//commit方法用來觸發(fā)mutations

//this.$store.commit('inchange',8);

//dispatch方法用來觸發(fā)actions

this.$store.dispatch('cg',7);

}

}

});

</script>

</body>

</html>




例子2:在VScode中實現(xiàn)vuex,可以進行點擊加號按鈕后,數(shù)字+1,點擊減號按鈕后數(shù)字-1,點擊“改變”按鈕后,原本HTML界面的'你好'的文本變成'再見'



npm?install?vuex?--save


//自己在src目錄下的main.js中加的關(guān)于vuex的代碼?START

import?vuex?from?'vuex'


Vue.use(vuex)

//獲取全局的數(shù)據(jù)倉庫

const?store?=?new?vuex.Store({

??state:?{

????count:?0,

????isShow:?true

??},

??getters:?{

????text(s){

??????return?s.isShow???'你好'?:?'再見';

????}

??},

??mutations:?{

????inadd(s){

??????s.count?++

????},

????inreduce(s){

??????s.count?--

????},

????inchange(s){

??????s.isShow?=?!s.isShow;

????}

??},

??actions:?{}

})


//自己在src目錄下的main.js中加的關(guān)于vuex的代碼??END




//自己加的代碼?START

store,

//自己加的代碼?END



有時語法嚴格,空格和換行等等會導(dǎo)致報錯,同時一些? ? ? ?//自己加的代碼 START

store,

//自己加的代碼 END? 這類的部分少寫了,也會導(dǎo)致報錯

demo.vue

<template>

??<div>

??????<input?type="button"?value="+"?@click="add"/>

??????<h1>{{$store.state.count}}</h1>

??????<input?type="button"?value="-"?@click="reduce"/>

??????<h1>{{$store.getters.text}}</h1>

??????<input?type="button"?value="切換"?@click="cg"/>

??</div>

</template>


<script>

export?default?{

????methods:?{

????????add(){

????????????this.$store.commit('inadd');

????????},

????????reduce(){

????????????this.$store.commit('inreduce');

????????},

????????cg(){

????????????this.$store.commit('inchange');

????????}

????}

}

</script>


<style>


</style>





index.js

import?Vue?from?'vue'

import?Router?from?'vue-router'

import?HelloWorld?from?'@/components/HelloWorld'

//自己加入的必須加載和要使用組件的代碼?START


//一般我一些代碼都不刪除,只注釋掉

//?import?Select1?from?'@/components/Select1'

import?index?from?'@/page/index'


//chong_ming_yan_zheng:重名驗證

import?chong_ming_yan_zheng?from?'@/components/chong_ming_yan_zheng'


import?Dm?from?'@/page/demo'


//自己加入的必須加載和要使用組件的代碼?END


Vue.use(Router)


export?default?new?Router({

??routes:?[

??

??//?{//http://localhost:8080/#/Select1

??//???path:?'/Select1',

??//???name:?'Select1',//路由跳轉(zhuǎn)時使用

??//???component:?Select1

??//?},

???{//http://localhost:8080/#/index

????path:?'/index',

????name:?'index',//路由跳轉(zhuǎn)時使用

????component:?index

??},

{//http://localhost:8080/#/chong_ming_yan_zheng

??path:?'/chong_ming_yan_zheng',

??name:?'chong_ming_yan_zheng',//路由跳轉(zhuǎn)時使用

??component:?chong_ming_yan_zheng

},

?{//http://localhost:8080/#/dm

??path:?'/dm',

??name:?'Dm',//路由跳轉(zhuǎn)時使用

??component:?Dm

}


????//自己加的代碼?END

??]

})

//解決重復(fù)點擊路由,界面跳轉(zhuǎn)等時報錯的代碼?START

const?originalPush?=?Router.prototype.push

Router.prototype.push?=?function?push?(location)?{

??return?originalPush.call(this,?location).catch(err?=>?err)

}


//解決重復(fù)點擊路由,界面跳轉(zhuǎn)等時報錯的代碼?END


main.js

//?The?Vue?build?version?to?load?with?the?`import`?command

//?(runtime-only?or?standalone)?has?been?set?in?webpack.base.conf?with?an?alias.

import?Vue?from?'vue'

import?App?from?'./App'

import?router?from?'./router'


import?vuex?from?'vuex'


//自己在src目錄下的main.js中加的關(guān)于vuex的代碼?START

Vue.use(vuex)

//獲取全局的數(shù)據(jù)倉庫

const?store?=?new?vuex.Store({

??state:?{

????count:?0,

????isShow:?true

??},

??getters:?{

????text(s){

??????return?s.isShow???'你好'?:?'再見';

????}

??},

??mutations:?{

????inadd(s){

??????s.count?++

????},

????inreduce(s){

??????s.count?--

????},

????inchange(s){

??????s.isShow?=?!s.isShow;

????}

??},

??actions:?{}

})


//自己在src目錄下的main.js中加的關(guān)于vuex的代碼??END


Vue.config.productionTip?=?false


/*?eslint-disable?no-new?*/

new?Vue({

??el:?'#app',

//自己加的代碼?START

store,

//自己加的代碼?END

??router,

??components:?{?App?},

??template:?'<App/>'

})


npm run dev

http://localhost:8080/#/dm


VUEX:store,在HBuilder中實現(xiàn)vuex,可以進行點擊加減號后數(shù)值改變等等【詩書畫唱】的評論 (共 條)

分享到微博請遵守國家法律
寿光市| 屯昌县| 星子县| 沁水县| 陆川县| 义马市| 永定县| 东莞市| 宿州市| 修武县| 商都县| 句容市| 烟台市| 利川市| 葫芦岛市| 盱眙县| 济阳县| 昌乐县| 德江县| 长岛县| 古丈县| 正蓝旗| 松江区| 河津市| 疏勒县| 兰溪市| 虹口区| 长汀县| 桓台县| 宣城市| 新乐市| 临夏市| 苏尼特右旗| 永春县| 扎兰屯市| 锡林郭勒盟| 土默特左旗| 桐乡市| 本溪| 卓资县| 海晏县|