javascript 如何从node.js中的公用文件夹中的文件访问变量?[副本]

ffscu2ro  于 2023-05-05  发布在  Java
关注(0)|答案(1)|浏览(104)

此问题已在此处有答案

What is the difference between client-side and server-side programming?(3个答案)
昨天关门了。
我问一个用户:什么是你的用户名与一个窗口。提示

//public/js/Chat.js
username = window.prompt('What is your username?)

在我的根文件夹中

//app.js
let chatMessage = new Chat({ message: msg, sender: username });

但这当然不起作用,因为它不在同一个文件中
所以我试着用这个来反驳:

//public/js/Chat.js
export let username = window.prompt('What is your username?')
//app.js
import { username } from './public/js/Chat.js'

但这不起作用,因为它不是模块。

pokxtpni

pokxtpni1#

"type": "module"添加到package.json中,以将上述代码作为模块使用。

相关问题