Giter Site home page Giter Site logo

Comments (12)

EndChapter avatar EndChapter commented on June 28, 2024

If you want to see an real world example check this out: https://github.com/EndChapter/7-24-classical-music-bot

from eris.

abalabahaha avatar abalabahaha commented on June 28, 2024

I assume you're referring to your event listeners? This is a Javascript quirk; class methods aren't bound to class objects by default. You can bind it when registering the listener:

this.client.on("ready", this.ready.bind(this));

or in the constructor:

class Client {
  constructor() {
    this.ready = this.ready.bind(this);
  }
  method() {
    this.client.on("ready", this.ready);
  }
}

from eris.

EndChapter avatar EndChapter commented on June 28, 2024

I mean check the code I used this as client...

from eris.

EndChapter avatar EndChapter commented on June 28, 2024

And I dont bind anything!

from eris.

EndChapter avatar EndChapter commented on June 28, 2024

Eris binds Client to "this" keyword

from eris.

EndChapter avatar EndChapter commented on June 28, 2024

This is a bug not a question.

from eris.

EndChapter avatar EndChapter commented on June 28, 2024

If you ever look the bind's documentation It makes other variables undefined if you use with this keyword in strict mode

from eris.

EndChapter avatar EndChapter commented on June 28, 2024

And It makes my all variables undefined you can try to add variables in that class and try to use after client connected

from eris.

EndChapter avatar EndChapter commented on June 28, 2024

It doesnt make any sense right? Just try it! This is why I opened the issue!

from eris.

EndChapter avatar EndChapter commented on June 28, 2024

I am referring Eris Client.js line 240 btw
image

from eris.

bsian03 avatar bsian03 commented on June 28, 2024

And I dont bind anything!

Unless there is a massive misunderstanding, abal is telling you that binding the method is the fix?

Also please just use one reply if you want to say something. You can edit if you forget to add something and is still relevant to what you originally said. It's annoying for people who receive email notifications to these issues

from eris.

EndChapter avatar EndChapter commented on June 28, 2024

Unless there is a massive misunderstanding, abal is telling you that binding the method is the fix?

That is really my bad I am really sorry for misunderstanding you abal :(

Also please just use one reply if you want to say something. You can edit if you forget to add something and is still relevant to what you originally said. It's annoying for people who receive email notifications to these issues

I will thanks!

from eris.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.