09-Vue技术栈(TodoList案例)

news2024/11/15 16:44:52

目录

  • 1、前期准备
  • 2、组件化编码流程
  • 3、拆分静态组件
    • 3.1 app组件
    • 3.2 TodoList组件
      • 3.2.1 TodoItem组件
    • 3.3 TodoFooter组件
  • 4、实现动态组件
  • 5、实现交互
    • 5.1 渲染页面
    • 5.2 添加功能
    • 5.3 勾选or取消勾选一个todo
    • 5.4 删除一个todo
    • 5.5 渲染TodoFooter底部内容
    • 5.6 全选or取消全选
    • 5.7清除所有已经完成的todo
    • 5.8 改为本地存储版
    • 5.9 编辑数据
    • 5.10 添加一个动画
  • 6、完整代码

实现效果:
请添加图片描述

源码在主页资源,可自行下载

1、前期准备

  1. 先搭建好Vue脚手架

具体步骤

第一步(仅第一次执行):全局安装@vue/cli

npm install -g @vue/cli

第二步:切换到你要创建项目的目录,然后使用命令创建项目

vue create xxxx

注:xxxx是你的项目名称

第三步:启动项目

npm run serve

2、创建好我们的结构目录

在这里插入图片描述

2、组件化编码流程

  • (1).拆分静态组件:组件要按照功能点拆分,命名不要与html元素冲突。
  • (2).实现动态组件:考虑好数据的存放位置,数据是一个组件在用,还是一些组件在用:
    1. 一个组件在用:放在组件自身即可。
    2. 一些组件在用:放在他们共同的父组件上(状态提升)。
  • ​ (3).实现交互:从绑定事件开始。

3、拆分静态组件

我们将整体结构分为一个主组件app3个子组件TodoHeader,TodoList,TodoFooter,在TodoList中有一个组件TodoItem。
根据组件的功能拆分静态资源
在这里插入图片描述

3.1 app组件

<template>
  <div id="root">
    <div class="todo-container">
      <div class="todo-wrap">
        <!-- 使用组件 -->
        <TodoHeader />
        <TodoList />
        <TodoFooter />
      </div>
    </div>
  </div>
</template>
   
<script>
// 导入子组件
import TodoHeader from "./components/TodoHeader";
import TodoList from "./components/TodoList";
import TodoFooter from "./components/TodoFooter";
export default {
    name:'App',
  // 注册组件
  components: {
    TodoHeader,
    TodoList,
    TodoFooter,
  },
};
</script>

<style>
/*base*/
body {
  background: #fff;
}

.btn {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

.btn-danger {
  color: #fff;
  background-color: #da4f49;
  border: 1px solid #bd362f;
}

.btn-danger:hover {
  color: #fff;
  background-color: #bd362f;
}

.btn:focus {
  outline: none;
}

.todo-container {
  width: 600px;
  margin: 0 auto;
}
.todo-container .todo-wrap {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}
</style>

3.2 TodoList组件

<template>
  <ul class="todo-main">
    <!-- 使用组件 -->
    <TodoItem/>
  </ul>
</template>

<script>
// 导入组件
import TodoItem from './TodoItem'
export default {
 	name:'TodoList',
    // 注册组件
    components:{
        TodoItem
    }
};
</script>

<style scoped>
/*main*/
.todo-main {
  margin-left: 0px;
  border: 1px solid #ddd;
  border-radius: 2px;
  padding: 0px;
}

.todo-empty {
  height: 40px;
  line-height: 40px;
  border: 1px solid #ddd;
  border-radius: 2px;
  padding-left: 5px;
  margin-top: 10px;
}
</style>

3.2.1 TodoItem组件

<template>
  <li>
    <label>
      <input type="checkbox" />
      <span>xxxxx</span>
    </label>
    <button class="btn btn-danger" style="display: none">删除</button>
  </li>
</template>

<script>
export default {
    name:'TodoItem'
};
</script>

<style scoped>
/*item*/
li {
  list-style: none;
  height: 36px;
  line-height: 36px;
  padding: 0 5px;
  border-bottom: 1px solid #ddd;
}

li label {
  float: left;
  cursor: pointer;
}

li label li input {
  vertical-align: middle;
  margin-right: 6px;
  position: relative;
  top: -1px;
}

li button {
  float: right;
  display: none;
  margin-top: 3px;
}

li:before {
  content: initial;
}

li:last-child {
  border-bottom: none;
}

</style>

3.3 TodoFooter组件

<template>
   <div class="todo-footer">
        <label>
          <input type="checkbox"/>
        </label>
        <span>
          <span>已完成0</span> / 全部2
        </span>
        <button class="btn btn-danger">清除已完成任务</button>
      </div>
</template>

<script>
export default {
	name:'TodoFooter'

}
</script>

<style scoped>

/*footer*/
.todo-footer {
  height: 40px;
  line-height: 40px;
  padding-left: 6px;
  margin-top: 5px;
}

.todo-footer label {
  display: inline-block;
  margin-right: 20px;
  cursor: pointer;
}

.todo-footer label input {
  position: relative;
  top: -1px;
  vertical-align: middle;
  margin-right: 5px;
}

.todo-footer button {
  float: right;
  margin-top: 5px;
}
</style>

4、实现动态组件

我们的数据很多个组件都需要用到,所以我们应该将数据放在最大的App组件里面

 data() {
    return {
      data() {
        return {
          //由于todos是MyHeader组件和MyFooter组件都在使用,所以放在App中(状态提升)
          todos: [
            { id: "001", title: "抽烟", done: true },
            { id: "002", title: "喝酒", done: false },
            { id: "003", title: "开车", done: true },
          ],
        };
      },
    };
  },

5、实现交互

5.1 渲染页面

  • 要实现TodoList组件里面的数据是响应式的,我们就需要将App组件里面的数据发送给它,这个时候我们就需要用到组件间的通信

  • App组件通过:todos="todos"的props通信方式,将数据传给TodoList组件

     <TodoList :todos="todos" />
    
  • TodoList组件通过props配置项接收数据

     //接收App传过来的数据
        props:['todos'],
    
  • TodoList接收到数据后,对子组件进行列表循环,并且每一个对象传给TodoItem子组件,让它渲染里面的具体数据。

     <TodoItem 
        v-for="todoObj in todos"
        :key='todoObj.id'
        :todo='todoObj'
      />
    
  • TodoItem组件通过props配置项接收数据

     props:['todo']
    
  • TodoItem接收到数据之后渲染页面

    <template>
      <li>
        <label>
          <input type="checkbox" />
          <span>{{todo.title}}</span>
        </label>
        <button class="btn btn-danger" style="display: none">删除</button>
      </li>
    </template>
    

5.2 添加功能

  • 实现添加功能我们就需要对TodoHeader组件进行设置,将数据发送给App组件

  • 由于是子组件 ===> 父组件传递数据,所以我将使用组件的自定义事件完成这个功能

App组件

<template>
  <div id="root">
    <div class="todo-container">
      <div class="todo-wrap">
        <!-- 使用组件 -->
        <TodoHeader @addTodo='addTodo'/>
        <TodoList :todos="todos" />
        <TodoFooter />
      </div>
    </div>
  </div>
</template>
   
<script>
// 导入子组件
import TodoHeader from "./components/TodoHeader";
import TodoList from "./components/TodoList";
import TodoFooter from "./components/TodoFooter";
export default {
  name: "App",
  // 注册组件
  components: {
    TodoHeader,
    TodoList,
    TodoFooter,
  },
  data() {
    return {
      //由于todos是MyHeader组件和MyFooter组件都在使用,所以放在App中(状态提升)
      todos: [
        { id: "001", title: "抽烟", done: true },
        { id: "002", title: "喝酒", done: false },
        { id: "003", title: "开车", done: true },
      ],
    };
  },
  methods: {
    // 添加一个todo 
    addTodo(todoObj) {
        this.todos.unshift(todoObj)
    }
  },

};
</script>

<style>
/*base*/
body {
  background: #fff;
}

.btn {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

.btn-danger {
  color: #fff;
  background-color: #da4f49;
  border: 1px solid #bd362f;
}

.btn-danger:hover {
  color: #fff;
  background-color: #bd362f;
}

.btn:focus {
  outline: none;
}

.todo-container {
  width: 600px;
  margin: 0 auto;
}
.todo-container .todo-wrap {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}
</style>

TodoHeader组件

<template>
  <div class="todo-header">
    <input
      type="text"
      placeholder="请输入你的任务名称,按回车键确认"
      v-model="title"
      @keyup.enter="add"
    />
  </div>
</template>

<script>
// 导入nanoid包,这个包采用的是分别暴露的方式
import { nanoid } from "nanoid";
export default {
  name: "TodoHeader",
  data() {
    return {
      // 用于接收用户输入的数据
      title: "",
    };
  },
  methods: {
    add() {
      // 如果用户输入为空就终止下面语句
      if (!this.title.trim()) return alert("内容不能为空");
      // 将用户输入的数据包装成一个对象
      const todoObj = { id: nanoid(), title: this.title, done: false };
      this.$emit("addTodo", todoObj);
      //   添加完清空输入框里的数据
      this.title = "";
    },
  },
};
</script>

<style scoped>
/*header*/
.todo-header input {
  width: 560px;
  height: 28px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 4px 7px;
}

.todo-header input:focus {
  outline: none;
  border-color: rgba(82, 168, 236, 0.8);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(82, 168, 236, 0.6);
}
</style>

5.3 勾选or取消勾选一个todo

  • 这个功能我们需要根据每一个todo的复选框的状态来修改数据里面的done值
  • 由于这个功能的通信是孙子==>爷爷(TodoItem==>App),所以我们采用全局事件总线的方式来完成通信。

main文件安装全局事件总线

import Vue from 'vue'
import App from './App.vue'

Vue.config.productionTip = false

new Vue({
  render: h => h(App),
  beforeCreate(){
    Vue.prototype.$bus = this//安装全局事件总线
  }
}).$mount('#app')

App组件作为接收数据放,所以App组件想接收数据,则在App组件中给$bus绑定自定义事件,事件的回调留在App组件自身。

<template>
  <div id="root">
    <div class="todo-container">
      <div class="todo-wrap">
        <!-- 使用组件 -->
        <TodoHeader @addTodo="addTodo" />
        <TodoList :todos="todos" />
        <TodoFooter />
      </div>
    </div>
  </div>
</template>
   
<script>
// 导入子组件
import TodoHeader from "./components/TodoHeader";
import TodoList from "./components/TodoList";
import TodoFooter from "./components/TodoFooter";
export default {
  name: "App",
  // 注册组件
  components: {
    TodoHeader,
    TodoList,
    TodoFooter,
  },
  data() {
    return {
      //由于todos是MyHeader组件和MyFooter组件都在使用,所以放在App中(状态提升)
      todos: [
        { id: "001", title: "抽烟", done: true },
        { id: "002", title: "喝酒", done: false },
        { id: "003", title: "开车", done: true },
      ],
    };
  },
  methods: {
    // 添加一个todo
    addTodo(todoObj) {
      this.todos.unshift(todoObj);
    },
    // 勾选or取消勾选一个todo
    checkTodo(id) {
      this.todos.forEach((item) => {
        if (item.id === id) item.done = !item.done;
      });
    },
  },
  // 全局事件总线通信方式
  mounted() {
    this.$bus.$on("checkTodo", this.checkTodo);
  },
  beforeDestroy() {
    this.$bus.$off("checkTodo");
  },
};
</script>

TodoItem组件作为提供数据者:需要调用这个事件this.$bus.$emit('xxxx',数据)

<template>
  <li>
    <label>
      <input type="checkbox" :checked='todo.done' @change='handelCheck(todo.id)'/>
      <span>{{todo.title}}</span>
    </label>
    <button class="btn btn-danger" style="display: none">删除</button>
  </li>
</template>

<script>
export default {
    name:'TodoItem',
    // 接收TodoList传过来的数据
    props:['todo'],
    methods: {
      handelCheck(id) {
       this.$bus.$emit('checkTodo',id)
      }
    },
};
</script>

5.4 删除一个todo

  • 同样采用事件总线的通信方式

App组件

<template>
  <div id="root">
    <div class="todo-container">
      <div class="todo-wrap">
        <!-- 使用组件 -->
        <TodoHeader @addTodo="addTodo" />
        <TodoList :todos="todos" />
        <TodoFooter />
      </div>
    </div>
  </div>
</template>
   
<script>
// 导入子组件
import TodoHeader from "./components/TodoHeader";
import TodoList from "./components/TodoList";
import TodoFooter from "./components/TodoFooter";
export default {
  name: "App",
  // 注册组件
  components: {
    TodoHeader,
    TodoList,
    TodoFooter,
  },
  data() {
    return {
      //由于todos是MyHeader组件和MyFooter组件都在使用,所以放在App中(状态提升)
      todos: [
        { id: "001", title: "抽烟", done: true },
        { id: "002", title: "喝酒", done: false },
        { id: "003", title: "开车", done: true },
      ],
    };
  },
  methods: {
    // 添加一个todo
    addTodo(todoObj) {
      this.todos.unshift(todoObj);
    },
    // 勾选or取消勾选一个todo
    checkTodo(id) {
      this.todos.forEach((item) => {
        if (item.id === id) item.done = !item.done;
      });
    },
    // 删除一个todo
    DeleteTodo(id) {
      this.todos = this.todos.filter((item) => {
        return item.id != id;
      });
    },
  },
  // 全局事件总线通信方式
  mounted() {
    this.$bus.$on("checkTodo", this.checkTodo);
    this.$bus.$on("DeleteTodo", this.DeleteTodo);
  },
  beforeDestroy() {
    this.$bus.$off("checkTodo");
  },
};
</script>

TodoItem组件

<template>
  <li>
    <label>
      <input
        type="checkbox"
        :checked="todo.done"
        @change="handelCheck(todo.id)"
      />
      <span>{{ todo.title }}</span>
    </label>
    <button class="btn btn-danger" @click="handelDelete(todo.id)">删除</button>
  </li>
</template>

<script>
export default {
  name: "TodoItem",
  // 接收TodoList传过来的数据
  props: ["todo"],
  methods: {
    handelCheck(id) {
      this.$bus.$emit("checkTodo", id);
    },
    handelDelete(id) {
     if(confirm('确定要删除吗?')) this.$bus.$emit("DeleteTodo", id);
    },
  },
};
</script>

5.5 渲染TodoFooter底部内容

  • 我们需要将数据todos发送给TodoFooter组件,这里采用最简单的props通信方式。

App组件

 <TodoFooter :todos="todos"/>

TodoFooter组件

<template>
  <div class="todo-footer">
    <label>
      <input type="checkbox" />
    </label>
    <span>
      <span>{{ doneTotal }}</span> / {{ total }}
    </span>
    <button class="btn btn-danger">清除已完成任务</button>
  </div>
</template>

<script>
export default {
  name: "TodoFooter",
  props: ["todos"],
  computed: {
    // 总的todo
    total() {
      return this.todos.length;
    },
    // 已完成todo
    doneTotal() {
      return this.todos.reduce((pre, current) => pre + (current.done ? 1 : 0),0);
    },
  },
};
</script>

5.6 全选or取消全选

  • 由于我们是子组件==>父组件进行通信(TodoFooter==>App),所以我们采用组件自定义事件来完成组件之间的通信

App组件

<template>
  <div id="root">
    <div class="todo-container">
      <div class="todo-wrap">
        <!-- 使用组件 -->
        <TodoHeader @addTodo="addTodo" />
        <TodoList :todos="todos" />
        <TodoFooter :todos="todos" @checkAllTodo='checkAllTodo'/>
      </div>
    </div>
  </div>
</template>
   
<script>
// 导入子组件
import TodoHeader from "./components/TodoHeader";
import TodoList from "./components/TodoList";
import TodoFooter from "./components/TodoFooter";
export default {
  name: "App",
  // 注册组件
  components: {
    TodoHeader,
    TodoList,
    TodoFooter,
  },
  data() {
    return {
      //由于todos是MyHeader组件和MyFooter组件都在使用,所以放在App中(状态提升)
      todos: [
        { id: "001", title: "抽烟", done: true },
        { id: "002", title: "喝酒", done: false },
        { id: "003", title: "开车", done: true },
      ],
    };
  },
  methods: {
    // 添加一个todo
    addTodo(todoObj) {
      this.todos.unshift(todoObj);
    },
    // 勾选or取消勾选一个todo
    checkTodo(id) {
      this.todos.forEach((item) => {
        if (item.id === id) item.done = !item.done;
      });
    },
    // 删除一个todo
    DeleteTodo(id) {
      this.todos = this.todos.filter((item) => {
        return item.id != id;
      });
    },
    // 全选或全不选
    checkAllTodo(value) {
      this.todos.forEach(item=>item.done = value)
    }
  },
  // 全局事件总线通信方式
  mounted() {
    this.$bus.$on("checkTodo", this.checkTodo);
    this.$bus.$on("DeleteTodo", this.DeleteTodo);
  },
  beforeDestroy() {
    this.$bus.$off("checkTodo");
  },
};
</script>

TodoFooter组件

<template>
  <div class="todo-footer" v-if ='total'>
    <label>
      <input type="checkbox" v-model="isAll" />
    </label>
    <span>
      <span>{{ doneTotal }}</span> / {{ total }}
    </span>
    <button class="btn btn-danger">清除已完成任务</button>
  </div>
</template>

<script>
export default {
  name: "TodoFooter",
  props: ["todos"],
  computed: {
    // 总的todo
    total() {
      return this.todos.length;
    },
    // 已完成todo
    doneTotal() {
      return this.todos.reduce((pre, current) => pre + (current.done ? 1 : 0),0);
    },
    // 全选或全不选
    isAll:{
      get() {
        return this.doneTotal === this.total && this.total > 0
      },
      set(value){
        this.$emit('checkAllTodo',value)
      }
    } 
  },
};
</script>

5.7清除所有已经完成的todo

  • 由于我们还是子组件==>父组件进行通信(TodoFooter==>App),所以我们采用组件自定义事件来完成组件之间的通信

App组件

<template>
  <div id="root">
    <div class="todo-container">
      <div class="todo-wrap">
        <!-- 使用组件 -->
        <TodoHeader @addTodo="addTodo" />
        <TodoList :todos="todos" />
        <TodoFooter
          :todos="todos"
          @checkAllTodo="checkAllTodo"
          @clearAllTodo="clearAllTodo"
        />
      </div>
    </div>
  </div>
</template>
   
<script>
// 导入子组件
import TodoHeader from "./components/TodoHeader";
import TodoList from "./components/TodoList";
import TodoFooter from "./components/TodoFooter";
export default {
  name: "App",
  // 注册组件
  components: {
    TodoHeader,
    TodoList,
    TodoFooter,
  },
  data() {
    return {
      //由于todos是MyHeader组件和MyFooter组件都在使用,所以放在App中(状态提升)
      todos: [
        { id: "001", title: "抽烟", done: true },
        { id: "002", title: "喝酒", done: false },
        { id: "003", title: "开车", done: true },
      ],
    };
  },
  methods: {
    // 添加一个todo
    addTodo(todoObj) {
      this.todos.unshift(todoObj);
    },
    // 勾选or取消勾选一个todo
    checkTodo(id) {
      this.todos.forEach((item) => {
        if (item.id === id) item.done = !item.done;
      });
    },
    // 删除一个todo
    DeleteTodo(id) {
      this.todos = this.todos.filter((item) => {
        return item.id != id;
      });
    },
    // 全选或全不选
    checkAllTodo(value) {
      this.todos.forEach((item) => (item.done = value));
    },
    // 清除所有已完成的todo
    clearAllTodo() {
      this.todos = this.todos.filter((item) => !item.done);
    },
  },
  // 全局事件总线通信方式
  mounted() {
    this.$bus.$on("checkTodo", this.checkTodo);
    this.$bus.$on("DeleteTodo", this.DeleteTodo);
  },
  beforeDestroy() {
    this.$bus.$off("checkTodo");
  },
};
</script>

TodoFooter组件

<template>
  <div class="todo-footer" v-if ='total'>
    <label>
      <input type="checkbox" v-model="isAll" />
    </label>
    <span>
      <span>{{ doneTotal }}</span> / {{ total }}
    </span>
    <button class="btn btn-danger" @click="clearAll">清除已完成任务</button>
  </div>
</template>

<script>
export default {
  name: "TodoFooter",
  props: ["todos"],
  computed: {
    // 总的todo
    total() {
      return this.todos.length;
    },
    // 已完成todo
    doneTotal() {
      return this.todos.reduce((pre, current) => pre + (current.done ? 1 : 0),0);
    },
    // 全选或全不选
    isAll:{
      get() {
        return this.doneTotal === this.total && this.total > 0
      },
      set(value){
        this.$emit('checkAllTodo',value)
      }
    },
  },
  methods: {
    // 清除所有已完成todo
    clearAll() {
      this.$emit('clearAllTodo')
    }
  },
};
</script>

5.8 改为本地存储版

  • 要实现页面刷新内容不丢失这个功能,我们就需要用到localStorage 属性来实现本地存储机制。同时需要用到watch属性来检测数据。

相关API:

  1. xxxxxStorage.setItem('key', 'value');
    该方法接受一个键和值作为参数,会把键值对添加到存储中,如果键名存在,则更新其对应的值。

  2. xxxxxStorage.getItem('person');

    ​ 该方法接受一个键名作为参数,返回键名对应的值。

  3. xxxxxStorage.removeItem('key');

    ​ 该方法接受一个键名作为参数,并把该键名从存储中删除。

  4. xxxxxStorage.clear()

    ​ 该方法会清空存储中的所有数据。

App组件

<template>
  <div id="root">
    <div class="todo-container">
      <div class="todo-wrap">
        <!-- 使用组件 -->
        <TodoHeader @addTodo="addTodo" />
        <TodoList :todos="todos" />
        <TodoFooter
          :todos="todos"
          @checkAllTodo="checkAllTodo"
          @clearAllTodo="clearAllTodo"
        />
      </div>
    </div>
  </div>
</template>
   
<script>
// 导入子组件
import TodoHeader from "./components/TodoHeader";
import TodoList from "./components/TodoList";
import TodoFooter from "./components/TodoFooter";
export default {
  name: "App",
  // 注册组件
  components: {
    TodoHeader,
    TodoList,
    TodoFooter,
  },
  data() {
    return {
      //由于todos是MyHeader组件和MyFooter组件都在使用,所以放在App中(状态提升)
      todos: JSON.parse(localStorage.getItem('todos'))|| []
    };
  },
  methods: {
    // 添加一个todo
    addTodo(todoObj) {
      this.todos.unshift(todoObj);
    },
    // 勾选or取消勾选一个todo
    checkTodo(id) {
      this.todos.forEach((item) => {
        if (item.id === id) item.done = !item.done;
      });
    },
    // 删除一个todo
    DeleteTodo(id) {
      this.todos = this.todos.filter((item) => {
        return item.id != id;
      });
    },
    // 全选或全不选
    checkAllTodo(value) {
      this.todos.forEach((item) => (item.done = value));
    },
    // 清除所有已完成的todo
    clearAllTodo() {
      this.todos = this.todos.filter((item) => !item.done);
    },
  },
  watch:{
    todos:{
      handler(value) {
        localStorage.setItem('todos',JSON.stringify(value))
      }
    }
  },
  // 全局事件总线通信方式
  mounted() {
    this.$bus.$on("checkTodo", this.checkTodo);
    this.$bus.$on("DeleteTodo", this.DeleteTodo);
  },
  beforeDestroy() {
    this.$bus.$off("checkTodo");
  },
};
</script>

5.9 编辑数据

这个功能我们需要根据每一个todo的idtitle的值来修改数据里面的titel值
由于这个功能的通信是孙子==>爷爷(TodoItem==>App),所以我们采用全局事件总线的方式来完成通信。

App组件

<template>
  <div id="root">
    <div class="todo-container">
      <div class="todo-wrap">
        <!-- 使用组件 -->
        <TodoHeader @addTodo="addTodo" />
        <TodoList :todos="todos" />
        <TodoFooter
          :todos="todos"
          @checkAllTodo="checkAllTodo"
          @clearAllTodo="clearAllTodo"
        />
      </div>
    </div>
  </div>
</template>
   
<script>
// 导入子组件
import TodoHeader from "./components/TodoHeader";
import TodoList from "./components/TodoList";
import TodoFooter from "./components/TodoFooter";
export default {
  name: "App",
  // 注册组件
  components: {
    TodoHeader,
    TodoList,
    TodoFooter,
  },
  data() {
    return {
      //由于todos是MyHeader组件和MyFooter组件都在使用,所以放在App中(状态提升)
      todos: JSON.parse(localStorage.getItem("todos")),
    };
  },
  methods: {
    // 添加一个todo
    addTodo(todoObj) {
      this.todos.unshift(todoObj);
    },
    // 勾选or取消勾选一个todo
    checkTodo(id) {
      this.todos.forEach((item) => {
        if (item.id === id) item.done = !item.done;
      });
    },
    // 删除一个todo
    DeleteTodo(id) {
      this.todos = this.todos.filter((item) => {
        return item.id != id;
      });
    },
    // 全选或全不选
    checkAllTodo(value) {
      this.todos.forEach((item) => (item.done = value));
    },
    // 清除所有已完成的todo
    clearAllTodo() {
      this.todos = this.todos.filter((item) => !item.done);
    },
    // 更新一个todo
    updateTodo(id, value) {
      this.todos.forEach((item) => {
        if (item.id === id) item.title = value;
      });
    },
  },
  watch: {
    todos: {
      deep: true,
      handler(value) {
        localStorage.setItem("todos", JSON.stringify(value));
      },
    },
  },
  // 全局事件总线通信方式
  mounted() {
    this.$bus.$on("checkTodo", this.checkTodo);
    this.$bus.$on("DeleteTodo", this.DeleteTodo);
    this.$bus.$on("updateTodo", this.updateTodo);
  },
  beforeDestroy() {
    this.$bus.$off("checkTodo");
    this.$bus.$off("updateTodo");
  },
};
</script>

<style>
/*base*/
body {
  background: #fff;
}

.btn {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

.btn-danger {
  color: #fff;
  background-color: #da4f49;
  border: 1px solid #bd362f;
}
.btn-edit {
  color: #fff;
  background-color: #8ed2f1;
  border: 1px solid #419ce7;
  margin-right: 5px;
}
.btn-edit:hover {
  color: #fff;
  background-color: #3ab3eb;
  border: 1px solid #419ce7;
  margin-right: 5px;
}

.btn-danger:hover {
  color: #fff;
  background-color: #bd362f;
}

.btn:focus {
  outline: none;
}

.todo-container {
  width: 600px;
  margin: 0 auto;
}
.todo-container .todo-wrap {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}
</style>

TodoItem组件

<template>
  <li>
    <label>
      <input
        type="checkbox"
        :checked="todo.done"
        @change="handelCheck(todo.id)"
      />
      <span v-show="!todo.isEdit">{{ todo.title }}</span>
      <input 
      type="text" 
      :value="todo.title"
      v-show="todo.isEdit"
      ref="inputFocus"
      @blur="handleBlur(todo,$event)"
       >
    </label>
    <button class="btn btn-danger" @click="handleDelete(todo.id)">删除</button>
    <button class="btn btn-edit" @click="handleEdit(todo)">编辑</button>
  </li>
</template>

<script>
export default {
  name: "TodoItem",
  // 接收TodoList传过来的数据
  props: ["todo"],
  methods: {
    handelCheck(id) {
      this.$bus.$emit("checkTodo", id);
    },
    handleDelete(id) {
     if(confirm('确定要删除吗?')) this.$bus.$emit("DeleteTodo", id);
    },
    handleEdit(todo) {
      if(todo.hasOwnProperty('isEdit')) {
        todo.isEdit = true
      } else {
        this.$set(todo,'isEdit',true)
      }
      this.$nextTick(function() {
        this.$refs.inputFocus.focus()
      })
    },
    handleBlur(todo,e){
				todo.isEdit = false
				if(!e.target.value.trim()) return alert('输入不能为空!')
				this.$bus.$emit('updateTodo',todo.id,e.target.value)
			}
  },
};
</script>

<style scoped>
/*item*/
li {
  list-style: none;
  height: 36px;
  line-height: 36px;
  padding: 0 5px;
  border-bottom: 1px solid #ddd;
}

li label {
  float: left;
  cursor: pointer;
}

li label li input {
  vertical-align: middle;
  margin-right: 6px;
  position: relative;
  top: -1px;
}

li button {
  float: right;
  display: none;
  margin-top: 3px;
}
li:hover button {
  display: block;
}
li:before {
  content: initial;
}

li:last-child {
  border-bottom: none;
}
</style>

5.10 添加一个动画

  • 给TodoItem组件添加一个动画

代码示例:

<template>
  <transition name="animation1" appear>
  <li>
    <label>
      <input
        type="checkbox"
        :checked="todo.done"
        @change="handleCheck(todo.id)"
      />
      <span v-show="!todo.isEdit">{{ todo.title }}</span>
      <input
        type="text"
        :value="todo.title"
        v-show="todo.isEdit"
        @blur="handleBlur(todo, $event)"
        ref="inputTitle"
      />
    </label>
    <button class="btn btn-danger" @click="handleDelete(todo.id)">删除</button>
    <button
      v-show="!todo.isEdit"
      class="btn btn-edit"
      @click="handleEdit(todo)"
    >
      编辑
    </button>
  </li>
  </transition>
</template>

<script>
export default {
  props: ["todo"],
  methods: {
    // 勾选or不勾选todo
    handleCheck(id) {
      // this.CheckTodo(id);
      this.$bus.$emit("CheckTodo", id);
    },
    // 删除一个todo
    handleDelete(id) {
      if (confirm("确定要删除吗?")) {
        // this.DeleteTodo(id)
        this.$bus.$emit("DeleteTodo", id);
      }
    },
    //编辑
    handleEdit(todo) {
     if(todo.hasOwnProperty('isEdit')){
					todo.isEdit = true
				}else{
					this.$set(todo,'isEdit',true)
				}
				this.$nextTick(function(){
					this.$refs.inputTitle.focus()
				})
    },
    // 失去焦点
    handleBlur(todo, e) {
      todo.isEdit = false;
      if (!e.target.value.trim()) return alert("输入不能为空!");
      this.$bus.$emit("updateTodo", todo.id, e.target.value);
    },
  },
};
</script>

<style scoped>
/*item*/
li {
  list-style: none;
  height: 36px;
  line-height: 36px;
  padding: 0 5px;
  border-bottom: 1px solid #ddd;
}

li label {
  float: left;
  cursor: pointer;
}

li label li input {
  vertical-align: middle;
  margin-right: 6px;
  position: relative;
  top: -1px;
}

li button {
  float: right;
  display: none;
  margin-top: 3px;
}
li:hover {
  background: #ddd;
}
li:hover button {
  display: block;
}
li:before {
  content: initial;
}

li:last-child {
  border-bottom: none;
}
/* 进入过程中 */
.animation1-enter-active {
	animation: animations 0.5s linear;
}
/* 离开过程中 */
.animation1-leave-active {
	animation: animations 0.5s linear reverse;
}
@keyframes animations {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
</style>

6、完整代码

main文件

import Vue from 'vue'
import App from './App.vue'

Vue.config.productionTip = false

new Vue({
  render: h => h(App),
  beforeCreate(){
    Vue.prototype.$bus = this//安装全局事件总线
  }
}).$mount('#app')

App组件

<template>
  <div id="root">
    <div class="todo-container">
      <div class="todo-wrap">
        <!-- 使用组件 -->
        <TodoHeader @addTodo="addTodo" />
        <TodoList :todos="todos" />
        <TodoFooter
          :todos="todos"
          @checkAllTodo="checkAllTodo"
          @clearAllTodo="clearAllTodo"
        />
      </div>
    </div>
  </div>
</template>
   
<script>
// 导入子组件
import TodoHeader from "./components/TodoHeader";
import TodoList from "./components/TodoList";
import TodoFooter from "./components/TodoFooter";
export default {
  name: "App",
  // 注册组件
  components: {
    TodoHeader,
    TodoList,
    TodoFooter,
  },
  data() {
    return {
      //由于todos是MyHeader组件和MyFooter组件都在使用,所以放在App中(状态提升)
      todos: JSON.parse(localStorage.getItem("todos")),
    };
  },
  methods: {
    // 添加一个todo
    addTodo(todoObj) {
      this.todos.unshift(todoObj);
    },
    // 勾选or取消勾选一个todo
    checkTodo(id) {
      this.todos.forEach((item) => {
        if (item.id === id) item.done = !item.done;
      });
    },
    // 删除一个todo
    DeleteTodo(id) {
      this.todos = this.todos.filter((item) => {
        return item.id != id;
      });
    },
    // 全选或全不选
    checkAllTodo(value) {
      this.todos.forEach((item) => (item.done = value));
    },
    // 清除所有已完成的todo
    clearAllTodo() {
      this.todos = this.todos.filter((item) => !item.done);
    },
    // 更新一个todo
    updateTodo(id, value) {
      this.todos.forEach((item) => {
        if (item.id === id) item.title = value;
      });
    },
  },
  watch: {
    todos: {
      deep: true,
      handler(value) {
        localStorage.setItem("todos", JSON.stringify(value));
      },
    },
  },
  // 全局事件总线通信方式
  mounted() {
    this.$bus.$on("checkTodo", this.checkTodo);
    this.$bus.$on("DeleteTodo", this.DeleteTodo);
    this.$bus.$on("updateTodo", this.updateTodo);
  },
  beforeDestroy() {
    this.$bus.$off("checkTodo");
    this.$bus.$off("updateTodo");
  },
};
</script>

<style>
/*base*/
body {
  background: #fff;
}

.btn {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

.btn-danger {
  color: #fff;
  background-color: #da4f49;
  border: 1px solid #bd362f;
}
.btn-edit {
  color: #fff;
  background-color: #8ed2f1;
  border: 1px solid #419ce7;
  margin-right: 5px;
}
.btn-edit:hover {
  color: #fff;
  background-color: #3ab3eb;
  border: 1px solid #419ce7;
  margin-right: 5px;
}

.btn-danger:hover {
  color: #fff;
  background-color: #bd362f;
}

.btn:focus {
  outline: none;
}

.todo-container {
  width: 600px;
  margin: 0 auto;
}
.todo-container .todo-wrap {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}
</style>

TodoHeader组件

<template>
  <div class="todo-header">
    <input
      type="text"
      placeholder="请输入你的任务名称,按回车键确认"
      v-model="title"
      @keyup.enter="add"
    />
  </div>
</template>

<script>
// 导入nanoid包,这个包采用的是分别暴露的方式
import { nanoid } from "nanoid";
export default {
  name: "TodoHeader",
  data() {
    return {
      // 用于接收用户输入的数据
      title: "",
    };
  },
  methods: {
    add() {
      // 如果用户输入为空就终止下面语句
      if (!this.title.trim()) return alert("内容不能为空");
      // 将用户输入的数据包装成一个对象
      const todoObj = { id: nanoid(), title: this.title, done: false };
      this.$emit("addTodo", todoObj);
      //   添加完清空输入框里的数据
      this.title = "";
    },
  },
};
</script>

<style scoped>
/*header*/
.todo-header input {
  width: 560px;
  height: 28px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 4px 7px;
}

.todo-header input:focus {
  outline: none;
  border-color: rgba(82, 168, 236, 0.8);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(82, 168, 236, 0.6);
}
</style>

TodoList组件

<template>
  <ul class="todo-main">
    <!-- 使用组件 -->
    <TodoItem 
    v-for="todoObj in todos"
    :key='todoObj.id'
    :todo='todoObj'
    />
  </ul>
</template>
<script>
// 导入组件
import TodoItem from './TodoItem'
export default {
    name:'TodoList',
    //接收App传过来的数据
    props:['todos'],
    // 注册组件
    components:{
        TodoItem
    },
};
</script>

<style scoped>
/*main*/
.todo-main {
  margin-left: 0px;
  border: 1px solid #ddd;
  border-radius: 2px;
  padding: 0px;
}

.todo-empty {
  height: 40px;
  line-height: 40px;
  border: 1px solid #ddd;
  border-radius: 2px;
  padding-left: 5px;
  margin-top: 10px;
}
</style>

TodoFooter组件

<template>
  <div class="todo-footer" v-if ='total'>
    <label>
      <input type="checkbox" v-model="isAll" />
    </label>
    <span>
      <span>{{ doneTotal }}</span> / {{ total }}
    </span>
    <button class="btn btn-danger" @click="clearAll">清除已完成任务</button>
  </div>
</template>

<script>
export default {
  name: "TodoFooter",
  props: ["todos"],
  computed: {
    // 总的todo
    total() {
      return this.todos.length;
    },
    // 已完成todo
    doneTotal() {
      return this.todos.reduce((pre, current) => pre + (current.done ? 1 : 0),0);
    },
    // 全选或全不选
    isAll:{
      get() {
        return this.doneTotal === this.total && this.total > 0
      },
      set(value){
        this.$emit('checkAllTodo',value)
      }
    },
  },
  methods: {
    // 清除所有已完成todo
    clearAll() {
      if(confirm('确定要删除已经完成的事项吗?'))this.$emit('clearAllTodo')
    }
  },
};
</script>

<style scoped>
/*footer*/
.todo-footer {
  height: 40px;
  line-height: 40px;
  padding-left: 6px;
  margin-top: 5px;
}

.todo-footer label {
  display: inline-block;
  margin-right: 20px;
  cursor: pointer;
}

.todo-footer label input {
  position: relative;
  top: -1px;
  vertical-align: middle;
  margin-right: 5px;
}

.todo-footer button {
  float: right;
  margin-top: 5px;
}
</style>

TodoItem组件

<template>
  <transition name="animation1" appear>
  <li>
    <label>
      <input
        type="checkbox"
        :checked="todo.done"
        @change="handleCheck(todo.id)"
      />
      <span v-show="!todo.isEdit">{{ todo.title }}</span>
      <input
        type="text"
        :value="todo.title"
        v-show="todo.isEdit"
        @blur="handleBlur(todo, $event)"
        ref="inputTitle"
      />
    </label>
    <button class="btn btn-danger" @click="handleDelete(todo.id)">删除</button>
    <button
      v-show="!todo.isEdit"
      class="btn btn-edit"
      @click="handleEdit(todo)"
    >
      编辑
    </button>
  </li>
  </transition>
</template>

<script>
export default {
  props: ["todo"],
  methods: {
    // 勾选or不勾选todo
    handleCheck(id) {
      // this.CheckTodo(id);
      this.$bus.$emit("CheckTodo", id);
    },
    // 删除一个todo
    handleDelete(id) {
      if (confirm("确定要删除吗?")) {
        // this.DeleteTodo(id)
        this.$bus.$emit("DeleteTodo", id);
      }
    },
    //编辑
    handleEdit(todo) {
     if(todo.hasOwnProperty('isEdit')){
					todo.isEdit = true
				}else{
					this.$set(todo,'isEdit',true)
				}
				this.$nextTick(function(){
					this.$refs.inputTitle.focus()
				})
    },
    // 失去焦点
    handleBlur(todo, e) {
      todo.isEdit = false;
      if (!e.target.value.trim()) return alert("输入不能为空!");
      this.$bus.$emit("updateTodo", todo.id, e.target.value);
    },
  },
};
</script>

<style scoped>
/*item*/
li {
  list-style: none;
  height: 36px;
  line-height: 36px;
  padding: 0 5px;
  border-bottom: 1px solid #ddd;
}

li label {
  float: left;
  cursor: pointer;
}

li label li input {
  vertical-align: middle;
  margin-right: 6px;
  position: relative;
  top: -1px;
}

li button {
  float: right;
  display: none;
  margin-top: 3px;
}
li:hover {
  background: #ddd;
}
li:hover button {
  display: block;
}
li:before {
  content: initial;
}

li:last-child {
  border-bottom: none;
}
/* 进入过程中 */
.animation1-enter-active {
	animation: animations 0.5s linear;
}
/* 离开过程中 */
.animation1-leave-active {
	animation: animations 0.5s linear reverse;
}
@keyframes animations {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
</style>

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

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

相关文章

软考算法-排序篇-下

排序篇 一&#xff1a;故事背景二&#xff1a;冒泡排序2.1 概念2.2 画图表示2.3 代码实现2.4 总结提升 三&#xff1a;快速排序3.1 概念3.2 画图表示3.3 代码实现3.4 总结提升 四&#xff1a;归并排序4.1 概念4.2 画图表示4.3 代码实现4.4 总结提升 五&#xff1a;基数排序5.1 …

第二章——进程与线程(上)

上船不思岸上人&#xff0c;下船不提船上事 文章目录 2.1.1 进程的概念&#xff0c;组成&#xff0c;特征知识总览进程的概念进程的组成——PCB程序是如何运行的进程的组成进程的特征知识回顾 2.1.2 进程的状态与转换&#xff0c;进程的组织知识总览创建态&#xff0c;就绪态运…

《花雕学AI》用Edge和chrome浏览器体验GPT-4智能聊天的神奇免费插件,Sider – 聊天机器人的新选择

你有没有想过和人工智能聊天&#xff1f;你有没有想过用浏览器就能和GPT-4这样的先进的聊天机器人对话&#xff1f;如果你有这样的想法&#xff0c;那么你一定要试试Sider这个神奇的免费插件。 Sider&#xff08;Sider – AI Sidebar&#xff09;是一款基于ChatGPT的智能侧边栏…

零基础小白学5G网络优化技术,最常陷入的怪圈有哪些?

“赛道”这个词是自媒体最喜欢谈的&#xff0c;因为生活里面处处是赛道。从上小学选择哪个中学&#xff0c;高考选择哪个专业&#xff0c;大学毕业选择哪个行业...... 一开始就选对赛道的人&#xff0c;少之又少&#xff0c;都是需要经历和试错才可以。面对行业和工作这个赛道&…

豪取BAT!超详细暑期实习算法面经(非科班无论文)

面试锦囊之面经分享系列&#xff0c;持续更新中 赶紧后台回复"面试"加入讨论组交流吧 写在前面 本人基本情况&#xff1a;211本硕&#xff0c;本科电子信息工程&#xff0c;硕士通信与信息系统&#xff0c;典型的非科班&#xff0c;无论文&#xff0c;两段实习经历…

UNIX系统调用和库函数(详细讲解)

什么是系统调用&#xff1f; 所有的操作系统都提供多种服务的入口点&#xff0c;由此程序向内核请求服务。各种版本的 UNIX 实现都提供良好定义、数量有限、直接进入内核的入口点&#xff0c;这些入口点被称为系统调用(system call,见图1-1) Research UNX 系统第7版提供了约5…

复古视觉大闸蟹创意海报设计

一、新建画布1500*2300像素&#xff0c;分辨率72 二、把文案要求拖入新建的画布中&#xff0c;更改文字颜色&#xff0c;然后打组命名为文案 三、拖入一个大闸蟹到画面当中&#xff0c;点击视图&#xff0c;新建一个居中的参考线&#xff0c;750居中 四、给画面添加一个背景&am…

关于WPA3-H2E的技术讲解

序言 H2E是Hash-To-Element的缩写。 问:虽然使用WPA3 SAE解决了offline dictionary破解密钥的问题,但是原先用于生成PMK的算法在计算时间上和密钥有关联性(这也行?),仍然存在所谓被side-channel方式破解。 解:新的算法,使用hash计算一次即可,堵死这个理论缺口[4]。…

盖雅工场发布数字化转型人效实践案例集

近日&#xff0c;盖雅工场重磅发布《聚集人效&#xff0c;重塑组织&#xff1a;典范企业管理实践案例集》&#xff08;以下简称案例集&#xff09;。 过去一年&#xff0c;盖雅工场携旗下盖雅学苑访谈了来自制造业、服务业、连锁零售业、汽车产业的几十家企业后&#xff0c;并…

【喜报】通付盾获评苏州市知识产权优势型企业!

近日&#xff0c;苏州市第二批知识产权强企培育工程成长型、优势型、引领型企业名单公示&#xff0c;江苏通付盾科技有限公司获评“苏州市知识产权强企培育工程-优势型企业”。 *名单发布来源&#xff1a;苏州市工业和信息化局 苏州市知识产权优势型企业 获评优势型企业的主要…

【观察】更懂业务的数智平台,才能应对数智化转型的“千变万化”

毫无疑问&#xff0c;随着数智化转型的加速&#xff0c;越来越多的企业正在把数智化战略提升到一个全新的高度&#xff0c;转型的进程也正从“浅层次”的数智化走向“深层次”数智化的阶段。 这也让企业的数智化转型进入到了一个全新的阶段&#xff0c;其面临的挑战也越来越大&…

intel I2C的速率配置

目录 寄存器篇 修改寄存器 intel I2C 驱动结构 lpss-pci文件 lpss文件 驱动结构 Synopsys DesignWare I2C BIOS配置修改 ACPI表的查看 I2C速率 寄存器篇 修改速率很简单&#xff0c;看到手册里面的寄存器说明&#xff0c;然后将其改掉即可。 寄存器偏移量为0&#x…

1、Flutter使用总结(RichText、Container)

1、创建Flutter项目 flutter create DemoName 2、运行项目 flutter run -d ‘iPhone 14 Pro Max’ 注: 当运用Android Studio时、选择安卓模拟器运行项目、如果项目路径有中文名称: 那么运行报错、如果直接在项目路径下,采用终端运行安卓模拟器、可执行如下命令 flutter ru…

博客系统后端设计(二) - 封装数据库操作

文章目录 封装数据库操作1. 创建一个 db.sql 文件2. 封装数据库的连接操作3. 创建实体类4. 封装数据库的增删改查操作4.1 创建 BlogDao 类中的方法4.2 创建 UserDao 类中的方法 封装数据库操作 这个步骤主要是把一些基本的数据库操作封装好&#xff0c;以后备用。 1. 创建一个…

微信小程序——wxs脚本

WXS目录 一、WXS的概述1、什么是wxs2、应用场景&#xff1a;3. wxs 与JavaScript(1)wxs 支持的数据类型:(2)wxs 不支持类似于 ES6 及以上的语法形式(3)wxs 遵循 CommonJS 规范 二 、WXS基础语法1、 内嵌 wxs 脚本2、外联的 wxs 脚本 三、WXS的特点1. 与 JavaScript 不同2. 不能…

【计算机图形学基础教程】MFC基本绘图函数2

MFC基本绘图函数 绘图工具类 CGdiObject类&#xff1a;GDI绘图工具的基类CBitmap类&#xff1a;封装了GDI画刷&#xff0c;可以选作设备上下文的当前画刷&#xff0c;用于填充图形的内部CFont类&#xff1a;封装了GDI字体&#xff0c;可以选作设备上下文的当前字体CPalette类…

一图看懂 aiohttp 模块:基于 asyncio 的异步HTTP网络库, 资料整理+笔记(大全)

本文由 大侠(AhcaoZhu)原创&#xff0c;转载请声明。 链接: https://blog.csdn.net/Ahcao2008 一图看懂 aiohttp 模块&#xff1a;基于 asyncio 的异步HTTP网络库, 资料整理笔记&#xff08;大全&#xff09; 摘要模块图类关系图模块全展开【aiohttp】统计常量模块1 aiohttp.hd…

Redis超详细入门手册教程!还不快来看看?

地址&#xff1a; RedisRedis is an open source (BSD licensed), in-memory data structure store, used as a database, cache, and message broker. Redis provides data structures …https://redis.io/ 1&#xff1a;NoSQL简介 1.1&#xff1a;数据库应用的演变历程 单…

【Matlab】基于改进的 Hausdorf 距离的DBSCAN船舶航迹聚类

【Matlab】基于改进的 Hausdorff 距离的DBSCAN船舶航迹聚类 一、模型简介1.1问题背景1.2具体内容AIS数据的预处理船舶轨迹分割船舶轨迹相似度度量船舶轨迹表达方式船舶轨迹相似度量方法改进的 Hausdorff 距离船舶轨迹聚类及轨迹提取基于改进DBSCAN算法轨迹聚类船舶典型轨迹的提…

PHP+vue基于web的小区物业管理管理系统1995a

小区物业管理系统主要是对小区物业以及居民信息进行管理&#xff0c;方便用户使用该资源的一种有效手段。能有效地对物业以及用户信息进行管理并为广大用户服务是该管理系统的基本要求&#xff0c;同时用户也可以及时了解最新的物业信息&#xff0c;方便地查询相关物业情况。基…