溫馨提示×

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

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

vue組件中data為什么是函數(shù)

發(fā)布時(shí)間:2022-12-02 09:35:19 來(lái)源:億速云 閱讀:121 作者:iii 欄目:web開發(fā)

這篇文章主要介紹“vue組件中data為什么是函數(shù)”的相關(guān)知識(shí),小編通過(guò)實(shí)際案例向大家展示操作過(guò)程,操作方法簡(jiǎn)單快捷,實(shí)用性強(qiáng),希望這篇“vue組件中data為什么是函數(shù)”文章能幫助大家解決問(wèn)題。

原因:防止多個(gè)組件實(shí)例對(duì)象之間共用一個(gè)data,產(chǎn)生數(shù)據(jù)污染;采用函數(shù)的形式,initData時(shí)會(huì)將其作為工廠函數(shù)都會(huì)返回全新data對(duì)象。當(dāng)將組件中的data寫成一個(gè)函數(shù),數(shù)據(jù)以函數(shù)返回值形式定義,這樣每復(fù)用一次組件,就會(huì)返回一份新的data,擁有自己的作用域,類似于給每個(gè)組件實(shí)例創(chuàng)建一個(gè)私有的數(shù)據(jù)空間,讓各個(gè)組件實(shí)例維護(hù)各自的數(shù)據(jù)。

一、實(shí)例和組件定義data的區(qū)別

vue實(shí)例的時(shí)候定義data屬性既可以是一個(gè)對(duì)象,也可以是一個(gè)函數(shù)

const app = new Vue({
    el:"#app",
    // 對(duì)象格式
    data:{
        foo:"foo"
    },
    // 函數(shù)格式
    data(){
        return {
             foo:"foo"
        }
    }
})

組件中定義data屬性,只能是一個(gè)函數(shù)

如果為組件data直接定義為一個(gè)對(duì)象

Vue.component('component1',{
    template:`<div>組件</div>`,
    data:{
        foo:"foo"
    }})

則會(huì)得到警告信息

vue組件中data為什么是函數(shù)

警告說(shuō)明:返回的data應(yīng)該是一個(gè)函數(shù)在每一個(gè)組件實(shí)例中

二、組件data定義函數(shù)與對(duì)象的區(qū)別

上面講到組件data必須是一個(gè)函數(shù),不知道大家有沒(méi)有思考過(guò)這是為什么呢?

在我們定義好一個(gè)組件的時(shí)候,vue最終都會(huì)通過(guò)Vue.extend()構(gòu)成組件實(shí)例

這里我們模仿組件構(gòu)造函數(shù),定義data屬性,采用對(duì)象的形式

function Component(){
 
}
Component.prototype.data = {
	count : 0
}

創(chuàng)建兩個(gè)組件實(shí)例

const componentA = new Component()
const componentB = new Component()

修改componentA組件data屬性的值,componentB中的值也發(fā)生了改變

console.log(componentB.data.count)  // 0
componentA.data.count = 1
console.log(componentB.data.count)  // 1

產(chǎn)生這樣的原因這是兩者共用了同一個(gè)內(nèi)存地址,componentA修改的內(nèi)容,同樣對(duì)componentB產(chǎn)生了影響。【學(xué)習(xí)視頻分享:vue視頻教程、web前端視頻】

如果我們采用函數(shù)的形式,則不會(huì)出現(xiàn)這種情況(函數(shù)返回的對(duì)象內(nèi)存地址并不相同)

function Component(){
this.data = this.data()
}
Component.prototype.data = function (){
    return {
   count : 0
    }
}

修改componentA組件data屬性的值,componentB中的值不受影響

console.log(componentB.data.count)  // 0
componentA.data.count = 1
console.log(componentB.data.count)  // 0

vue組件可能會(huì)有很多個(gè)實(shí)例,采用函數(shù)返回一個(gè)全新data形式,使每個(gè)實(shí)例對(duì)象的數(shù)據(jù)不會(huì)受到其他實(shí)例對(duì)象數(shù)據(jù)的污染

三、原理分析

首先可以看看vue初始化data的代碼,data的定義可以是函數(shù)也可以是對(duì)象

源碼位置:/vue-dev/src/core/instance/state.js

function initData (vm: Component) {
  let data = vm.$options.data
  data = vm._data = typeof data === 'function'
    ? getData(data, vm)
    : data || {}
    ...
}

data既能是object也能是function,那為什么還會(huì)出現(xiàn)上文警告呢?

別急,繼續(xù)看下文

組件在創(chuàng)建的時(shí)候,會(huì)進(jìn)行選項(xiàng)的合并

源碼位置:/vue-dev/src/core/util/options.js

自定義組件會(huì)進(jìn)入mergeOptions進(jìn)行選項(xiàng)合并

Vue.prototype._init = function (options?: Object) {
    ...
    // merge options
    if (options && options._isComponent) {
      // optimize internal component instantiation
      // since dynamic options merging is pretty slow, and none of the
      // internal component options needs special treatment.
      initInternalComponent(vm, options)
    } else {
      vm.$options = mergeOptions(
        resolveConstructorOptions(vm.constructor),
        options || {},
        vm
      )
    }
    ...
  }

定義data會(huì)進(jìn)行數(shù)據(jù)校驗(yàn)

源碼位置:/vue-dev/src/core/instance/init.js

這時(shí)候vm實(shí)例為undefined,進(jìn)入if判斷,若data類型不是function,則出現(xiàn)警告提示

strats.data = function (
  parentVal: any,
  childVal: any,
  vm?: Component
): ?Function {
  if (!vm) {
    if (childVal && typeof childVal !== "function") {
      process.env.NODE_ENV !== "production" &&
        warn(
          'The "data" option should be a function ' +
            "that returns a per-instance value in component " +
            "definitions.",
          vm
        );
      return parentVal;
    }
    return mergeDataOrFn(parentVal, childVal);
  }
  return mergeDataOrFn(parentVal, childVal, vm);
};

關(guān)于“vue組件中data為什么是函數(shù)”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí),可以關(guān)注億速云行業(yè)資訊頻道,小編每天都會(huì)為大家更新不同的知識(shí)點(diǎn)。

向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