Heim > Fragen und Antworten > Hauptteil
class test {
constructor() {
console.log("init");
}
}
module.exports = test;
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>drawBoard</title>
</head>
<body>
</body>
<script type="text/javascript" src="../build/test.js"></script>
<script type="text/javascript">
console.log(typeof test) // undefined
</script>
</html>
So ein direkter Anruf wird definitiv scheitern.
Ich habe es gesehen webpack
打包后的代码,理解是将 打包了一个匿名函数,然后在匿名函数中返回了 module.exports
的 类 test
。
用 es6
写可以用 import
,可是用 es5
Wie nennt man es?
Bitte helfen Sie mir, danke.