Sto giocando con le nuove cose in JavaScript/ES6. Ottengo un Uncaught ReferenceError: this is not defined(...) player.js:5
nel mio codice. Per quanto vedo, non ci sono errori qui! è un insetto? Qualche soluzione alternativa?"Uncaught ReferenceError: this is not defined" nel costruttore della classe
index.html
<html>
<head>
<script type="text/javascript" src="js/entity.js"></script>
<script type="text/javascript" src="js/player.js"></script>
<link href="css/style.css" rel="stylesheet" type="text/css">
<title>Test</title>
</head>
<body>
<canvas id="screen" width=500 height=500></canvas>
<script type="text/javascript">initialize();</script>
</body>
</html>
entity.js
"use strict";
class Entity {
constructor() {
console.log("Entity");
}
}
player.js
"use strict";
class Player extends Entity {
constructor() {
console.log("Created"); // <- error here
}
}
Mi manca qualcosa o non hai mai dichiarato 'inizializza' ovunque ??? – Bergi
Era il codice vecchio e irrilevante che è stato lasciato nel mio errore. – bshaw
Possibile duplicato di [JavaScript ES6 classe estesa senza super] (http://stackoverflow.com/questions/31067368/javascript-es6-class-extend-without-super) – Makyen