Code Monkey home page Code Monkey logo

Comments (6)

zverbeta avatar zverbeta commented on August 26, 2024 1

This issue is on ios 8.3 too

Becouse es5 doesn't support new Proxy. I found this module https://github.com/GoogleChrome/proxy-polyfill

from vue-socket.io.

exprodrigues avatar exprodrigues commented on August 26, 2024

@zverbeta, I tried to use this module, but received the following error:

Proxy polyfill does not support trap 'deleteProperty'

from vue-socket.io.

zverbeta avatar zverbeta commented on August 26, 2024

@exprodrigues

I have got also this error, but forgot leave feedback. No one polyfill doesn't work with proxy deleteProperty. If you won't use vuex you can make mixin, something like that

`
Vue.prototype.$socket = Socket;

Vue.mixin({
methods: {
created(){
let sockets = this.$options['sockets'];

if(sockets){
  Object.keys(sockets).forEach((key) => {
    if(typeof sockets[key] == 'function') {
      this.$socket.on(key, sockets[key].bind(this));
    }
  });
}

},
beforeDestroy(){
const sockets = this.$options['sockets'];

if(sockets){
  Object.keys(sockets).forEach((key) => {
    delete this.$options.sockets[key]
  });
}

}
});
`

from vue-socket.io.

HaoweiCh avatar HaoweiCh commented on August 26, 2024

Did you solve this problem ? @zverbeta

from vue-socket.io.

ghostTing avatar ghostTing commented on August 26, 2024

Did someone solve this problem ? Please tell me what to do , thanks a lot

from vue-socket.io.

probil avatar probil commented on August 26, 2024

Try vue-socket.io-extended instead. It works fine in browsers with no Proxy API support (IE11, Chrome 37, etc)

from vue-socket.io.

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.