You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
throws an Uncaught TypeError: MyModel is not a constructor.
The reason behind this behavior is that the ES6 method definition name() is not completely equivalent to the old name: function() {} because the ES6 methods are labelled internally as non-constructable.
A way to solve this is to change the extend method from
this would no longer work. I tried to find whether it is possible to check whether a method is constructable or not in which case something could be done like
Hence it's a trade-off between 100% backwards compatability for a rather rare edge case, or to be able to get rid of the requirement to specify the constructor as a non-ES6 method definition, but this leads to some awkward code like
i have to say, that babel converts constructor() to constructor: function()
also, microsoft edge understands this correctly constructor() and there is no errors if you are in edge
check thisout: https://codepen.io/dimatabu/pen/ZZgdxj?editors=0010
personally, i am always using babel
and faced with this issue only when i create something in test purposes and i am always treat this as bad es6 implementation in browser
I know that using Babel solves the issue, but still I think that there's a place for this, because:
When using platforms like electron, you don't need to use babel because you know what version of node you're running and hence there's no need to transpile ES6 functionality.
I don't really know the ES spec in detail, but if I'm not mistaken the fact that object methods are not constructable is in the spec, which only means that Edge doesn't follow the spec appropriately.
Using ES6, it becomes possible to extend Backbone objects using
This syntax is a nice shortcut for the more old-fashioned
The problem is though that if you want to specify a custom constructor
it turns out that
throws an
Uncaught TypeError: MyModel is not a constructor
.The reason behind this behavior is that the ES6 method definition
name()
is not completely equivalent to the oldname: function() {}
because the ES6 methods are labelled internally as non-constructable.A way to solve this is to change the extend method from
to
There is one minor drawback to this approach which is that if someone ever did something like
this would no longer work. I tried to find whether it is possible to check whether a method is constructable or not in which case something could be done like
but it seems that there's no elegant way to check this.
Hence it's a trade-off between 100% backwards compatability for a rather rare edge case, or to be able to get rid of the requirement to specify the constructor as a non-ES6 method definition, but this leads to some awkward code like
I would love to hear some thoughts on this subject. I'd be willing to create a pull request if required.
The text was updated successfully, but these errors were encountered: