jQuery 源碼分析筆記(6) jQuery.data

來源:互聯網
上載者:User

data部分的代碼從1381行開始。最開始的幾行關鍵代碼:
複製代碼 代碼如下:
jQuery.extend({
// 儲存資料的地方,關鍵實現核心
cache: { },
// 分配ID用的seed
uuid: 0,
// 為了區別不同的jQuery執行個體儲存的資料,使用首碼+jQuery版本號碼+隨機數作為Key
expando: "jQuery" + (jQuery.fn.jquery + Math.random()).replace(/\D/g, ""),
// 以下元素沒有Data:embed和applet(這玩意還活著麼),除了Flash之外的object。
noData: {
"embed": true,
"object": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",
"applet": true
}
});

對外的介面都調用了兩個內建函式:jQuery.data(elem, name, data, pvt)和jQuery.removeData(elem, name, pvt)。而removeData的邏輯與data類似,只是data是加入資料,而removeData使用delete或者設定為null刪除資料。
data部分的代碼中明確區分了JS對象和DOM對象的儲存,這是為瞭解決部分瀏覽器的記憶體流失問題。在低版本IE中,當DOM和JS對象之間出現循環參考時,GC就無法正確處理。參見Understanding and Solving Internet Explorer Leak Patterns。至於COM對象,因為已經限制object元素沒有data,就繞過了這個問題。
複製代碼 代碼如下:
data: function(elem, name, data, pvt) {
// 如果屬於noData中定義的元素
if(!jQuery.acceptData(elem)) {
return;
}
var internalKey = jQuery.expando,
getByName = typeof name === "string",
thisCache,
isNode = elem.nodeType,
// DOM元素需要儲存在Cache,JS對象直接儲存到elem
cache = isNode ? jQuery.cache : elem,
// 如果elem的jQuery.expando已經有值了,就重用
id = isNode ? elem[jQuery.expando] : elem[jQuery.expando] && jQuery.expando;
<PRE class=brush:;gutter:true;><CODE>// data未定義,說明當前調用是查詢資料,但是對象沒有任何資料,直接返回
if((!id || (pvt && id && !cache[id][internalKey])) && getByName && data === undefined) {
return;
}
if(!id) {
if(isNode) {
// 用uuid種子遞增分配唯一ID,只有DOM元素需要。因為需要存在全域cache中
elem[jQuery.expando] = id = ++jQuery.uuid;
} else {
id = jQuery.expando;
}
}
// 清空原來的值
if(!cache[id]) {
cache[id] = {};
if(!isNode) {
cache[id].toJSON = jQuery.noop;
}
}
// 用extend擴充cache,增加一個屬性,用來儲存資料
if(typeof name === "object" || typeof name === "function") {
if(pvt) {
cache[id][internalKey] = jQuery.expand(cache[id][internalKey], name);
} else {
cache[id] = jQuery.extend(cache[id], name);
}
}
thisCache = cahce[id];
// 避免Key衝突
if(pvt) {
if(!thisCache[internalKey]) {
thisCahce[internalKey] = {};
}
thisCache = thisCache[internalKey];
}
if(data !== undefined) {
thisCache[jQuery.camelCase(name)] = data;
}
return getByName ? thisCache[jQuery.camelCase(name)] : thisCache;
}
removeData: function( elem, name, pvt ) { // 前面部分與data類似 // ... // 部分瀏覽器不支援在Element上進行delete操作,在jQuery.support中檢查過這個瀏覽器特性。 // 如果delete失敗的話,就先設定成null。 if ( jQuery.support.deleteExpando || cache != window ) { delete cache[ id ]; } else { cache[ id ] = null; }
<PRE class=brush:;gutter:true;><CODE>var internalCache = cache[ id ][ internalKey ];
// 如果還有資料,就清空一次再設定,增加效能
if ( internalCache ) {
cache[ id ] = {};
cache[ id ][ internalKey ] = internalCache;
// 已經沒有任何資料了,就全部刪除
} else if ( isNode ) {
// 如果支援delete,就刪除。
// IE使用removeAttribute,所以嘗試一次。再失敗就只能設定為null了。
if ( jQuery.support.deleteExpando ) {
delete elem[ jQuery.expando ];
} else if ( elem.removeAttribute ) {
elem.removeAttribute( jQuery.expando );
} else {
elem[ jQuery.expando ] = null;
}
}
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.