首頁 > 後端開發 > php教程 > javascript - 這兩種自訂事件的綁定方式有什麼不同?哪種好?

javascript - 這兩種自訂事件的綁定方式有什麼不同?哪種好?

WBOY
發布: 2016-09-15 11:30:57
原創
1344 人瀏覽過

第一種方式,直接將自訂事件存放在__onfireEvents中

<code>var __onfireEvents = {};

function _bind(eventName, callback, is_one, context) {
    if (typeof eventName !== string_str || typeof callback !== function_str) {
        throw new Error('args: '+string_str+', '+function_str+'');
    }
    if (! hasOwnKey(__onfireEvents, eventName)) {
        __onfireEvents[eventName] = {};
    }
    __onfireEvents[eventName][++__cnt] = [callback, is_one, context];

    return [eventName, __cnt];
}

function on(eventName, callback, context) {
    return _bind(eventName, callback, 0, context);
}
</code>
登入後複製
登入後複製

第二種方式,同樣是將自訂事件儲存起來,不同之處是綁定在元素上,是否有必要?這裡有什麼優勢嗎?

<code>$customSubMap = {};
subscribeEvent = function ( $collection, event_name, fn ) {
    $collection.on( event_name, fn );
   

    if ( ! $customSubMap[ event_name ] ) {
        $customSubMap[ event_name ] = $collection;
    }
    else {
        $customSubMap[ event_name ]
        = $customSubMap[ event_name ].add( $collection );
    }
};</code>
登入後複製
登入後複製

回覆內容:

第一種方式,直接將自訂事件存放在__onfireEvents中

<code>var __onfireEvents = {};

function _bind(eventName, callback, is_one, context) {
    if (typeof eventName !== string_str || typeof callback !== function_str) {
        throw new Error('args: '+string_str+', '+function_str+'');
    }
    if (! hasOwnKey(__onfireEvents, eventName)) {
        __onfireEvents[eventName] = {};
    }
    __onfireEvents[eventName][++__cnt] = [callback, is_one, context];

    return [eventName, __cnt];
}

function on(eventName, callback, context) {
    return _bind(eventName, callback, 0, context);
}
</code>
登入後複製
登入後複製

第二種方式,同樣是將自訂事件儲存起來,不同之處是綁定在元素上,是否有必要?這裡有什麼優勢嗎?

<code>$customSubMap = {};
subscribeEvent = function ( $collection, event_name, fn ) {
    $collection.on( event_name, fn );
   

    if ( ! $customSubMap[ event_name ] ) {
        $customSubMap[ event_name ] = $collection;
    }
    else {
        $customSubMap[ event_name ]
        = $customSubMap[ event_name ].add( $collection );
    }
};</code>
登入後複製
登入後複製

看起來第二種可讀性好一點。

其實我覺得兩者本質上沒差別,就像產品與分類的關係,可以說 {Product1:[Category1, Category2]}也可以說{Category1: [Product1, Product2]}

個人感覺第二個

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板