3 回答

TA貢獻(xiàn)1829條經(jīng)驗(yàn) 獲得超13個(gè)贊
從你的 package.json 我可以看到你正在嘗試使用 --experimental-modules 運(yùn)行節(jié)點(diǎn)。如果是,請(qǐng)嘗試更改:
import?{Brandade}?from?"./modules/Brandade";
到
import?{Brandade}?from?"./modules/Brandade.js";
運(yùn)行 node--experimental-modules
本身不會(huì)解析文件擴(kuò)展名。

TA貢獻(xiàn)1852條經(jīng)驗(yàn) 獲得超1個(gè)贊
嘗試使用 commonjs 導(dǎo)入樣式。
代替
import {Brandade} from "./modules/Brandade";
經(jīng)過
const { Brandade } = require("./modules/Brandade");
同時(shí)將 Brandade 文件導(dǎo)出語法更改為 commonjs,如下所示。
class Brandade {
constructor(){
}
}
module.exports = { Brandade };
為了使用 ES6 導(dǎo)入語法,請(qǐng)使用像 Babel 這樣的轉(zhuǎn)譯器。

TA貢獻(xiàn)1856條經(jīng)驗(yàn) 獲得超5個(gè)贊
我的 nodejs 版本是 14,我回到了 12 版本。
節(jié)點(diǎn)--版本
v12.19.0
npm --version
6.14.8
我刪除了 package.json 并輸入命令“npm init”。已創(chuàng)建一個(gè)新的 package.json 文件。我添加了以下行:
"Start": "node index.js" in scripts.
我還修改了 Brandade.js 文件:
Module.exports = {Brandade};
在 :
Module.exports = Brandade;
最后,在 index.js 中,我添加了以下幾行:
let Brandade = require ('./ scripts / Brandade');
console.log ("Hello");
let brandade = new Brandade ("my name", 3);
brandade.show_name ();
而且效果很好。
感謝您的參與和回答。
再見。
有關(guān)信息,package.json 文件:
{
"name": "typescript_tests",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC"
}
布蘭達(dá)德.js:
class Brandade {
constructor(nom, prix) {
this.nom = nom;
this.prix = prix;
}
get nom(){
return this.nom;
}
set nom(nom){
return this.nom = nom;
}
afficher_nom(){
console.log(this.nom);
}
}
module.exports = Brandade ;
添加回答
舉報(bào)