欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Vue2和Vue3中常用組件通信用法分享

 更新時間:2023年04月10日 10:20:26   作者:沐華  
這篇文章主要為大家整理了Vue3的8種和Vue2的12種組件通信的使用方法,文中的示例代碼講解詳細(xì),對我們學(xué)習(xí)Vue有一定的幫助,值得收藏

Vue3 組件通信方式

  • props
  • $emit
  • expose / ref
  • $attrs
  • v-model
  • provide / inject
  • Vuex
  • mitt

Vue3 通信使用寫法

1. props

用 props 傳數(shù)據(jù)給子組件有兩種方法,如下

方法一,setup() 方法寫法

// Parent.vue 傳送
<child :msg1="msg1" :msg2="msg2"></child>
<script>
import child from "./child.vue"
import { ref, reactive } from "vue"
export default {
    data(){
        return {
            msg1:"這是傳級子組件的信息1"
        }
    },
    setup(){
        // 創(chuàng)建一個響應(yīng)式數(shù)據(jù)
        
        // 寫法一 適用于基礎(chǔ)類型  ref 還有其他用處,下面章節(jié)有介紹
        const msg2 = ref("這是傳級子組件的信息2")
        
        // 寫法二 適用于復(fù)雜類型,如數(shù)組、對象
        const msg2 = reactive(["這是傳級子組件的信息2"])
        
        return {
            msg2
        }
    }
}
</script>

// Child.vue 接收
<script>
export default {
  props: ["msg1", "msg2"],// 如果這行不寫,下面就接收不到
  setup(props) {
    console.log(props) // { msg1:"這是傳給子組件的信息1", msg2:"這是傳給子組件的信息2" }
  },
}
</script>

方法二,setup 語法糖

// Parent.vue 傳送
<child :msg2="msg2"></child>
<script setup>
    import child from "./child.vue"
    import { ref, reactive } from "vue"
    const msg2 = ref("這是傳給子組件的信息2")
    // 或者復(fù)雜類型
    const msg2 = reactive(["這是傳級子組件的信息2"])
</script>

// Child.vue 接收
<script setup>
    // 不需要引入 直接使用
    // import { defineProps } from "vue"
    const props = defineProps({
        // 寫法一
        msg2: String
        // 寫法二
        msg2:{
            type:String,
            default:""
        }
    })
    console.log(props) // { msg2:"這是傳級子組件的信息2" }
</script>

注意:

如果父組件是setup(),子組件setup 語法糖寫法的話,是接收不到父組件里 data 的屬性,只能接收到父組件里 setup 函數(shù)里傳的屬性

如果父組件是setup 語法糖寫法,子組件setup()方法寫法,可以通過 props 接收到 data 和 setup 函數(shù)里的屬性,但是子組件要是在 setup 里接收,同樣只能接收到父組件中 setup 函數(shù)里的屬性,接收不到 data 里的屬性

官方也說了,既然用了 3,就不要寫 2 了,所以不推薦setup()方法寫法。下面的例子,一律只用語法糖的寫法

2. $emit

// Child.vue 派發(fā)
<template>
    // 寫法一
    <button @click="emit('myClick')">按鈕</buttom>
    // 寫法二
    <button @click="handleClick">按鈕</buttom>
</template>
<script setup>
    
    // 方法一 適用于Vue3.2版本 不需要引入
    // import { defineEmits } from "vue"
    // 對應(yīng)寫法一
    const emit = defineEmits(["myClick","myClick2"])
    // 對應(yīng)寫法二
    const handleClick = ()=>{
        emit("myClick", "這是發(fā)送給父組件的信息")
    }
    
    // 方法二 不適用于 Vue3.2版本,該版本 useContext()已廢棄
    import { useContext } from "vue"
    const { emit } = useContext()
    const handleClick = ()=>{
        emit("myClick", "這是發(fā)送給父組件的信息")
    }
</script>

// Parent.vue 響應(yīng)
<template>
    <child @myClick="onMyClick"></child>
</template>
<script setup>
    import child from "./child.vue"
    const onMyClick = (msg) => {
        console.log(msg) // 這是父組件收到的信息
    }
</script>

3. expose / ref

父組件獲取子組件的屬性或者調(diào)用子組件方法

// Child.vue
<script setup>
    // 方法一 不適用于Vue3.2版本,該版本 useContext()已廢棄
    import { useContext } from "vue"
    const ctx = useContext()
    // 對外暴露屬性方法等都可以
    ctx.expose({
        childName: "這是子組件的屬性",
        someMethod(){
            console.log("這是子組件的方法")
        }
    })
    
    // 方法二 適用于Vue3.2版本, 不需要引入
    // import { defineExpose } from "vue"
    defineExpose({
        childName: "這是子組件的屬性",
        someMethod(){
            console.log("這是子組件的方法")
        }
    })
</script>

// Parent.vue  注意 ref="comp"
<template>
    <child ref="comp"></child>
    <button @click="handlerClick">按鈕</button>
</template>
<script setup>
    import child from "./child.vue"
    import { ref } from "vue"
    const comp = ref(null)
    const handlerClick = () => {
        console.log(comp.value.childName) // 獲取子組件對外暴露的屬性
        comp.value.someMethod() // 調(diào)用子組件對外暴露的方法
    }
</script>

4. attrs

attrs:包含父作用域里除 class 和 style 除外的非 props 屬性集合

// Parent.vue 傳送
<child :msg1="msg1" :msg2="msg2" title="3333"></child>
<script setup>
    import child from "./child.vue"
    import { ref, reactive } from "vue"
    const msg1 = ref("1111")
    const msg2 = ref("2222")
</script>

// Child.vue 接收
<script setup>
    import { defineProps, useContext, useAttrs } from "vue"
    // 3.2版本不需要引入 defineProps,直接用
    const props = defineProps({
        msg1: String
    })
    // 方法一 不適用于 Vue3.2版本,該版本 useContext()已廢棄
    const ctx = useContext()
    // 如果沒有用 props 接收 msg1 的話就是 { msg1: "1111", msg2:"2222", title: "3333" }
    console.log(ctx.attrs) // { msg2:"2222", title: "3333" }
    
    // 方法二 適用于 Vue3.2版本
    const attrs = useAttrs()
    console.log(attrs) // { msg2:"2222", title: "3333" }
</script>

5. v-model

可以支持多個數(shù)據(jù)雙向綁定

// Parent.vue
<child v-model:key="key" v-model:value="value"></child>
<script setup>
    import child from "./child.vue"
    import { ref, reactive } from "vue"
    const key = ref("1111")
    const value = ref("2222")
</script>

// Child.vue
<template>
    <button @click="handlerClick">按鈕</button>
</template>
<script setup>
    
    // 方法一  不適用于 Vue3.2版本,該版本 useContext()已廢棄
    import { useContext } from "vue"
    const { emit } = useContext()
    
    // 方法二 適用于 Vue3.2版本,不需要引入
    // import { defineEmits } from "vue"
    const emit = defineEmits(["key","value"])
    
    // 用法
    const handlerClick = () => {
        emit("update:key", "新的key")
        emit("update:value", "新的value")
    }
</script>

6. provide / inject

provide / inject 為依賴注入

provide:可以讓我們指定想要提供給后代組件的數(shù)據(jù)或

inject:在任何后代組件中接收想要添加在這個組件上的數(shù)據(jù),不管組件嵌套多深都可以直接拿來用

// Parent.vue
<script setup>
    import { provide } from "vue"
    provide("name", "沐華")
</script>

// Child.vue
<script setup>
    import { inject } from "vue"
    const name = inject("name")
    console.log(name) // 沐華
</script>

7. Vuex

// store/index.js
import { createStore } from "vuex"
export default createStore({
    state:{ count: 1 },
    getters:{
        getCount: state => state.count
    },
    mutations:{
        add(state){
            state.count++
        }
    }
})

// main.js
import { createApp } from "vue"
import App from "./App.vue"
import store from "./store"
createApp(App).use(store).mount("#app")

// Page.vue
// 方法一 直接使用
<template>
    <div>{{ $store.state.count }}</div>
    <button @click="$store.commit('add')">按鈕</button>
</template>

// 方法二 獲取
<script setup>
    import { useStore, computed } from "vuex"
    const store = useStore()
    console.log(store.state.count) // 1

    const count = computed(()=>store.state.count) // 響應(yīng)式,會隨著vuex數(shù)據(jù)改變而改變
    console.log(count) // 1 
</script>

8. mitt

Vue3 中沒有了 EventBus 跨組件通信,但是現(xiàn)在有了一個替代的方案 mitt.js,原理還是 EventBus

先安裝 npm i mitt -S

然后像以前封裝 bus 一樣,封裝一下

mitt.js
import mitt from 'mitt'
const mitt = mitt()
export default mitt

然后兩個組件之間通信的使用

// 組件 A
<script setup>
import mitt from './mitt'
const handleClick = () => {
    mitt.emit('handleChange')
}
</script>

// 組件 B 
<script setup>
import mitt from './mitt'
import { onUnmounted } from 'vue'
const someMethed = () => { ... }
mitt.on('handleChange',someMethed)
onUnmounted(()=>{
    mitt.off('handleChange',someMethed)
})
</script>

Vue2.x 組件通信方式

Vue2.x 組件通信共有12種

  • props
  • $emit / v-on
  • .sync
  • v-model
  • ref
  • $children / $parent
  • $attrs / $listeners
  • provide / inject
  • EventBus
  • Vuex
  • $root
  • slot

父子組件通信可以用:

  • props
  • $emit / v-on
  • $attrs / $listeners
  • ref
  • .sync
  • v-model
  • $children / $parent

兄弟組件通信可以用:

  • EventBus
  • Vuex
  • $parent

跨層級組件通信可以用:

  • provide/inject
  • EventBus
  • Vuex
  • $attrs / $listeners
  • $root

Vue2.x 通信使用寫法

下面把每一種組件通信方式的寫法一一列出

1. props

父組件向子組件傳送數(shù)據(jù),這應(yīng)該是最常用的方式了

子組件接收到數(shù)據(jù)之后,不能直接修改父組件的數(shù)據(jù)。會報錯,所以當(dāng)父組件重新渲染時,數(shù)據(jù)會被覆蓋。如果子組件內(nèi)要修改的話推薦使用 computed

// Parent.vue 傳送
<template>
    <child :msg="msg"></child>
</template>

// Child.vue 接收
export default {
  // 寫法一 用數(shù)組接收
  props:['msg'],
  // 寫法二 用對象接收,可以限定接收的數(shù)據(jù)類型、設(shè)置默認(rèn)值、驗(yàn)證等
  props:{
      msg:{
          type:String,
          default:'這是默認(rèn)數(shù)據(jù)'
      }
  },
  mounted(){
      console.log(this.msg)
  },
}

2. .sync

可以幫我們實(shí)現(xiàn)父組件向子組件傳遞的數(shù)據(jù) 的雙向綁定,所以子組件接收到數(shù)據(jù)后可以直接修改,并且會同時修改父組件的數(shù)據(jù)

// Parent.vue
<template>
    <child :page.sync="page"></child>
</template>
<script>
export default {
    data(){
        return {
            page:1
        }
    }
}

// Child.vue
export default {
    props:["page"],
    computed(){
        // 當(dāng)我們在子組件里修改 currentPage 時,父組件的 page 也會隨之改變
        currentPage {
            get(){
                return this.page
            },
            set(newVal){
                this.$emit("update:page", newVal)
            }
        }
    }
}
</script>

3. v-model

和 .sync 類似,可以實(shí)現(xiàn)將父組件傳給子組件的數(shù)據(jù)為雙向綁定,子組件通過 $emit 修改父組件的數(shù)據(jù)

// Parent.vue
<template>
    <child v-model="value"></child>
</template>
<script>
export default {
    data(){
        return {
            value:1
        }
    }
}

// Child.vue
<template>
    <input :value="value" @input="handlerChange">
</template>
export default {
    props:["value"],
    // 可以修改事件名,默認(rèn)為 input
    model:{
        // prop:'value', // 上面?zhèn)鞯氖莢alue這里可以不寫,如果屬性名不是value就要寫
        event:"updateValue"
    },
    methods:{
        handlerChange(e){
            this.$emit("input", e.target.value)
            // 如果有上面的重命名就是這樣
            this.$emit("updateValue", e.target.value)
        }
    }
}
</script>

4. ref

ref 如果在普通的DOM元素上,引用指向的就是該DOM元素;

如果在子組件上,引用的指向就是子組件實(shí)例,然后父組件就可以通過 ref 主動獲取子組件的屬性或者調(diào)用子組件的方法

// Child.vue
export default {
    data(){
        return {
            name:"沐華"
        }
    },
    methods:{
        someMethod(msg){
            console.log(msg)
        }
    }
}

// Parent.vue
<template>
    <child ref="child"></child>
</template>
<script>
export default {
    mounted(){
        const child = this.$refs.child
        console.log(child.name) // 沐華
        child.someMethod("調(diào)用了子組件的方法")
    }
}
</script>

5. $emit / v-on

子組件通過派發(fā)事件的方式給父組件數(shù)據(jù),或者觸發(fā)父組件更新等操作

// Child.vue 派發(fā)
export default {
  data(){
      return { msg: "這是發(fā)給父組件的信息" }
  },
  methods: {
      handleClick(){
          this.$emit("sendMsg",this.msg)
      }
  },
}
// Parent.vue 響應(yīng)
<template>
    <child v-on:sendMsg="getChildMsg"></child>
    // 或 簡寫
    <child @sendMsg="getChildMsg"></child>
</template>

export default {
    methods:{
        getChildMsg(msg){
            console.log(msg) // 這是父組件接收到的消息
        }
    }
}

6. $attrs / $listeners

多層嵌套組件傳遞數(shù)據(jù)時,如果只是傳遞數(shù)據(jù),而不做中間處理的話就可以用這個,比如父組件向?qū)O子組件傳遞數(shù)據(jù)時

$attrs:包含父作用域里除 class 和 style 除外的非 props 屬性集合。通過 this.$attrs 獲取父作用域中所有符合條件的屬性集合,然后還要繼續(xù)傳給子組件內(nèi)部的其他組件,就可以通過 v-bind="$attrs"

$listeners:包含父作用域里 .native 除外的監(jiān)聽事件集合。如果還要繼續(xù)傳給子組件內(nèi)部的其他組件,就可以通過 v-on="$linteners"

使用方式是相同的

// Parent.vue
<template>
    <child :name="name" title="1111" ></child>
</template
export default{
    data(){
        return {
            name:"沐華"
        }
    }
}

// Child.vue
<template>
    // 繼續(xù)傳給孫子組件
    <sun-child v-bind="$attrs"></sun-child>
</template>
export default{
    props:["name"], // 這里可以接收,也可以不接收
    mounted(){
        // 如果props接收了name 就是 { title:1111 },否則就是{ name:"沐華", title:1111 }
        console.log(this.$attrs)
    }
}

7. $children / $parent

$children:獲取到一個包含所有子組件(不包含孫子組件)的 VueComponent 對象數(shù)組,可以直接拿到子組件中所有數(shù)據(jù)和方法等

$parent:獲取到一個父節(jié)點(diǎn)的 VueComponent 對象,同樣包含父節(jié)點(diǎn)中所有數(shù)據(jù)和方法等

// Parent.vue
export default{
    mounted(){
        this.$children[0].someMethod() // 調(diào)用第一個子組件的方法
        this.$children[0].name // 獲取第一個子組件中的屬性
    }
}

// Child.vue
export default{
    mounted(){
        this.$parent.someMethod() // 調(diào)用父組件的方法
        this.$parent.name // 獲取父組件中的屬性
    }
}

8. provide / inject

provide / inject 為依賴注入,說是不推薦直接用于應(yīng)用程序代碼中,但是在一些插件或組件庫里卻是被常用,所以我覺得用也沒啥,還挺好用的

provide:可以讓我們指定想要提供給后代組件的數(shù)據(jù)或方法

inject:在任何后代組件中接收想要添加在這個組件上的數(shù)據(jù)或方法,不管組件嵌套多深都可以直接拿來用

要注意的是 provide 和 inject 傳遞的數(shù)據(jù)不是響應(yīng)式的,也就是說用 inject 接收來數(shù)據(jù)后,provide 里的數(shù)據(jù)改變了,后代組件中的數(shù)據(jù)不會改變,除非傳入的就是一個可監(jiān)聽的對象

所以建議還是傳遞一些常量或者方法

// 父組件
export default{
    // 方法一 不能獲取 this.xxx,只能傳寫死的
    provide:{
        name:"沐華",
    },
    // 方法二 可以獲取 this.xxx
    provide(){
        return {
            name:"沐華",
            msg: this.msg // data 中的屬性
            someMethod:this.someMethod // methods 中的方法
        }
    },
    methods:{
        someMethod(){
            console.log("這是注入的方法")
        }
    }
}

// 后代組件
export default{
    inject:["name","msg","someMethod"],
    mounted(){
        console.log(this.msg) // 這里拿到的屬性不是響應(yīng)式的,如果需要拿到最新的,可以在下面的方法中返回
        this.someMethod()
    }
}

9. EventBus

EventBus 是中央事件總線,不管是父子組件,兄弟組件,跨層級組件等都可以使用它完成通信操作

定義方式有三種

// 方法一
// 抽離成一個單獨(dú)的 js 文件 Bus.js ,然后在需要的地方引入
// Bus.js
import Vue from "vue"
export default new Vue()

// 方法二 直接掛載到全局
// main.js
import Vue from "vue"
Vue.prototype.$bus = new Vue()

// 方法三 注入到 Vue 根對象上
// main.js
import Vue from "vue"
new Vue({
    el:"#app",
    data:{
        Bus: new Vue()
    }
})

使用如下,以方法一按需引入為例

// 在需要向外部發(fā)送自定義事件的組件內(nèi)
<template>
    <button @click="handlerClick">按鈕</button>
</template>
import Bus from "./Bus.js"
export default{
    methods:{
        handlerClick(){
            // 自定義事件名 sendMsg
            Bus.$emit("sendMsg", "這是要向外部發(fā)送的數(shù)據(jù)")
        }
    }
}

// 在需要接收外部事件的組件內(nèi)
import Bus from "./Bus.js"
export default{
    mounted(){
        // 監(jiān)聽事件的觸發(fā)
        Bus.$on("sendMsg", data => {
            console.log("這是接收到的數(shù)據(jù):", data)
        })
    },
    beforeDestroy(){
        // 取消監(jiān)聽
        Bus.$off("sendMsg")
    }
}

10. Vuex

Vuex 是狀態(tài)管理器,集中式存儲管理所有組件的狀態(tài)。這一塊內(nèi)容過長,如果基礎(chǔ)不熟的話可以看這個Vuex,然后大致用法如下

比如創(chuàng)建這樣的文件結(jié)構(gòu)

index.js 里內(nèi)容如下

import Vue from 'vue'
import Vuex from 'vuex'
import getters from './getters'
import actions from './actions'
import mutations from './mutations'
import state from './state'
import user from './modules/user'

Vue.use(Vuex)

const store = new Vuex.Store({
  modules: {
    user
  },
  getters,
  actions,
  mutations,
  state
})
export default store

然后在 main.js 引入

import Vue from "vue"
import store from "./store"
new Vue({
    el:"#app",
    store,
    render: h => h(App)
})

然后在需要的使用組件里

import { mapGetters, mapMutations } from "vuex"
export default{
    computed:{
        // 方式一 然后通過 this.屬性名就可以用了
        ...mapGetters(["引入getters.js里屬性1","屬性2"])
        // 方式二
        ...mapGetters("user", ["user模塊里的屬性1","屬性2"])
    },
    methods:{
        // 方式一 然后通過 this.屬性名就可以用了
        ...mapMutations(["引入mutations.js里的方法1","方法2"])
        // 方式二
        ...mapMutations("user",["引入user模塊里的方法1","方法2"])
    }
}

// 或者也可以這樣獲取
this.$store.state.xxx
this.$store.state.user.xxx

11. $root

$root 可以拿到 App.vue 里的數(shù)據(jù)和方法

12. slot

就是把子組件的數(shù)據(jù)通過插槽的方式傳給父組件使用,然后再插回來

// Child.vue
<template>
    <div>
        <slot :user="user"></slot>
    </div>
</template>
export default{
    data(){
        return {
            user:{ name:"沐華" }
        }
    }
}

// Parent.vue
<template>
    <div>
        <child v-slot="slotProps">
            {{ slotProps.user.name }}
        </child>
    </div>
</template>

以上就是Vue2和Vue3中常用組件通信用法分享的詳細(xì)內(nèi)容,更多關(guān)于Vue組件通信的資料請關(guān)注腳本之家其它相關(guān)文章!

相關(guān)文章

  • Vue響應(yīng)式原理模擬實(shí)現(xiàn)原理探究

    Vue響應(yīng)式原理模擬實(shí)現(xiàn)原理探究

    這篇文章主要介紹了Vue響應(yīng)式原理,響應(yīng)式就是當(dāng)對象本身(對象的增刪值)或者對象屬性(重新賦值)發(fā)生了改變的時候,就會運(yùn)行一些函數(shù),最常見的示render函數(shù)
    2022-09-09
  • vue3?ref獲取組件實(shí)例詳細(xì)圖文教程

    vue3?ref獲取組件實(shí)例詳細(xì)圖文教程

    在Vue3中可以使用ref函數(shù)來創(chuàng)建一個響應(yīng)式的變量,通過將ref函數(shù)應(yīng)用于一個組件實(shí)例,我們可以獲取到該組件的實(shí)例對象,這篇文章主要給大家介紹了關(guān)于vue3?ref獲取組件實(shí)例的詳細(xì)圖文教程,需要的朋友可以參考下
    2023-10-10
  • vue封裝jquery修改自身及兄弟元素的方法

    vue封裝jquery修改自身及兄弟元素的方法

    本文主要介紹了vue封裝jquery修改自身及兄弟元素的方法,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2022-07-07
  • ant?design?vue的form表單取值方法

    ant?design?vue的form表單取值方法

    這篇文章主要介紹了ant?design?vue的form表單取值方法,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2022-06-06
  • Vue中使用Lodop插件實(shí)現(xiàn)打印功能的簡單方法

    Vue中使用Lodop插件實(shí)現(xiàn)打印功能的簡單方法

    這篇文章主要給大家介紹了關(guān)于Vue中使用Lodop插件實(shí)現(xiàn)打印功能的簡單方法,文中通過示例代碼介紹的非常詳細(xì),對大家學(xué)習(xí)或者使用Vue具有一定的參考學(xué)習(xí)價值,需要的朋友們下面來一起學(xué)習(xí)學(xué)習(xí)吧
    2019-12-12
  • Vue 自定義組件 v-model 使用詳解

    Vue 自定義組件 v-model 使用詳解

    這篇文章主要介紹了Vue 自定義組件 v-model 使用介紹,包括vue2中使用和vue3中使用,本文通過示例代碼給大家介紹的非常詳細(xì),對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2022-08-08
  • vue使用elementUI分頁如何實(shí)現(xiàn)切換頁面時返回頁面頂部

    vue使用elementUI分頁如何實(shí)現(xiàn)切換頁面時返回頁面頂部

    這篇文章主要介紹了vue使用elementUI分頁如何實(shí)現(xiàn)切換頁面時返回頁面頂部,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2022-08-08
  • vite項(xiàng)目添加eslint?prettier及husky方法實(shí)例

    vite項(xiàng)目添加eslint?prettier及husky方法實(shí)例

    這篇文章主要為大家介紹了vite項(xiàng)目添加eslint?prettier及實(shí)例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪
    2022-07-07
  • vue.js Router嵌套路由

    vue.js Router嵌套路由

    這篇文章主要介紹vue.js Router嵌套路由,平時訪問首頁,里面有新聞類的/home/news,還有信息類的/home/message這時候就需要使用到嵌套路由,下面我們就來具體學(xué)習(xí)嵌套路由的原理,需要的朋友可以參考一下
    2021-10-10
  • vue實(shí)現(xiàn)一個單獨(dú)的組件注釋

    vue實(shí)現(xiàn)一個單獨(dú)的組件注釋

    這篇文章主要介紹了vue實(shí)現(xiàn)一個單獨(dú)的組件注釋,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2022-04-04

最新評論