溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Vue怎么封裝一個(gè)TodoList

發(fā)布時(shí)間:2021-04-23 10:16:29 來(lái)源:億速云 閱讀:191 作者:小新 欄目:編程語(yǔ)言

這篇文章主要介紹Vue怎么封裝一個(gè)TodoList,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

Vue的優(yōu)點(diǎn)

Vue具體輕量級(jí)框架、簡(jiǎn)單易學(xué)、雙向數(shù)據(jù)綁定、組件化、數(shù)據(jù)和結(jié)構(gòu)的分離、虛擬DOM、運(yùn)行速度快等優(yōu)勢(shì),Vue中頁(yè)面使用的是局部刷新,不用每次跳轉(zhuǎn)頁(yè)面都要請(qǐng)求所有數(shù)據(jù)和dom,可以大大提升訪問(wèn)速度和用戶體驗(yàn)。

Vue怎么封裝一個(gè)TodoList

使用Vue封裝一個(gè)簡(jiǎn)易的Todolist的小案例. 同時(shí)加入了瀏覽器本地緩存的技術(shù)手段.

瀏覽器本地緩沖:

  • 前提: 一般我們定義的變量,或者用Vuex保存的數(shù)據(jù), 當(dāng)瀏覽器進(jìn)行了一個(gè)刷新 那么這個(gè)數(shù)據(jù)就會(huì)丟失, 這樣就做不出歷史記錄的效果了, 但是, 使用瀏覽器緩存就可以幫助我們解決這個(gè)問(wèn)題…

  • 瀏覽器緩存分為二種 sessionStorage 和 localStorage, 二種原型鏈分別如下:

Vue怎么封裝一個(gè)TodoList

Vue怎么封裝一個(gè)TodoList
可以看得出, 他們的原型鏈上基本都是一樣的, 唯一的區(qū)別在于

  • localStorage 作用于本地緩存, 時(shí)間是持久的,除非手動(dòng)去刪除, 或者清空, 不然一直都存在瀏覽器中

  • sessionStorage 作用與會(huì)話緩存, 生命周期只存在于本次打開(kāi)瀏覽器會(huì)話, 當(dāng)完成的關(guān)閉瀏覽器,那么信息就會(huì)丟失, 而僅僅刷新頁(yè)面, 數(shù)據(jù)仍然保存。

本次實(shí)例,使用的是 sessionStorage, 并對(duì)此進(jìn)行了一次小封裝.

const  storage = {
	set(key, value){
		window.sessionStorage.setItem(key, JSON.stringify(value));
	},
	get(key){
		return JSON.parse(window.sessionStorage.getItem(key));
	},
	remove(key){
		window.sessionStorage.removeItem(key);
	}}export default storage;

實(shí)例代碼:

<template>
	<p class="todo">
		<header>
			<input type="text" placeholder="輸入..." v-model="keyword" @keydown.enter="handleList">
			TodoList		</header>
		<!-- 正在進(jìn)行 -->
		<h5>正在進(jìn)行...{{dolistNumber}}</h5>
		<template v-for="(item, index) in dolist" :key="index">
			<p class="dolist" v-if="!item.checked">
				<label :for="index +'l'">
					<input type="checkbox" v-model="item.checked" :id="index +'l'" @change="handleChecked">
					{{item.title}}				</label>
				<span @click="cancalDo(index)">X</span>
			</p>
		</template>

		<!-- 已經(jīng)完成 -->
		<h5>已經(jīng)完成...{{dolist.length - dolistNumber}}</h5>
		<template v-for="(item, index) in dolist" :key="index">
			<p class="dolist" v-if="item.checked">
				<label :for="index +'ll'">
					<input type="checkbox" v-model="item.checked" :id="index +'ll'"  @change="handleChecked">
					{{item.title}}				</label>
				<span @click="cancalDo(index)">X</span>
			</p>
		</template>
	</p></template><script>
	import storage from '../storage.js';
	export default {
		name: "todoList",
		data() {
			return {
				keyword: "", //  輸入的選項(xiàng)
				dolist: [],
			}
		},
		computed:{
			dolistNumber(){
				return this.dolist.filter(item => item.checked === false).length;
			}
		},
		methods: {
			handleChecked(){
				//  當(dāng)更改狀態(tài)之后 重新刷新
				storage.set('dolist', this.dolist);
			},
			handleList() {
				if (this.keyword !== "") {
					this.dolist.push({
						title: this.keyword,
						checked: false,
					});
					this.keyword = "";
					storage.set('dolist', this.dolist);
				}
				
			},
			cancalDo(index) {
				// 刪除這個(gè)
				this.dolist.splice(index, 1);
				storage.set('dolist', this.dolist);
			}
		},
		mounted(){
			let dolist = storage.get('dolist');
			if(dolist){
				this.dolist = dolist;
			}
		},

	}	</script><style>
	.todo {
		margin: 400px auto;
		min-height: 300px;
		width: 800px;
		background-color: #eee;
	}

	.todo header {
		position: relative;
		text-align: center;
		height: 60px;
		line-height: 60px;
		font-size: 20px;
		border-bottom: 2px solid #fff;
	}

	.todo header input {
		position: absolute;
		left: 40px;
		top: 50%;
		transform: translateY(-50%);

		outline: none;
		line-height: 30px;
		border-radius: 15px;
		padding-left: 30px;
		border: 1px solid #999;
		font-size: 16px;
		width: 100px;
		transition: all .6s linear;
	}

	.todo header input:focus {
		width: 200px;
	}

	.dolist {
		padding: 20px;
		font-size: 16px;

	}

	.dolist label {
		cursor: pointer;
	}

	.dolist input {
		margin-right: 10px;

	}

	.dolist span:last-child {
		float: right;
		border: 1px solid gray;
		background-color: #999;
		color: #fff;
		border-radius: 50%;
		padding: 5px;
	}

	h5 {
		padding-bottom: 20px;
		text-align: center;
	}</style>

以上是“Vue怎么封裝一個(gè)TodoList”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI