Nodejs event cannot remove the problem

Source: Internet
Author: User

Recently encountered an issue in event processing, add Event listener no problem, everything is OK. But in the remove, but how also can not delete. The reason for the anonymous function is found after debugging the code. For example, the following code is available:

1Import {Eventemitter,} from ' Events ';2 3 class Eventbase extends Eventemitter {4 Constructor () {5 super ();6   }7 }8 9Let eventinstance =Neweventbase ();Ten  One class Operator { A constructor () {} -  - Ontouchstart (e) {...} the  - bindevent () { -     //Note that after bind (this) it is not ontouchstart, but an anonymous function -Eventinstance.on ( This. Ontouchstart.bind ( This)); +   } -  + unbindevent () { A     //This is not successful . atEventinstance.removelistener ( This. Ontouchstart); -  -     /** - * Even if it's not successful - * Eventinstance.removelistener (This.onTouchStart.bind (this)); -      */ in   } -}

The correct approach is as follows:

1Import {Eventemitter,} from ' Events ';2 3 class Eventbase extends Eventemitter {4 Constructor () {5 super ();6   }7 }8 9Let eventinstance =Neweventbase ();Ten  One class Operator { A Constructor () { -     //Early binding -      This. Ontouchstart = This. Ontouchstart.bind ( This); the   } -  - Ontouchstart (e) {...} -  + bindevent () { -     //that's it. +Eventinstance.on ( This. Ontouchstart); A   } at  - unbindevent () { -     //Smooth Release -Eventinstance.removelistener ( This. Ontouchstart); -   } -}

Nodejs event cannot remove the problem

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.