此问题已在此处有答案:
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'
但这不起作用,因为它不是模块。
1条答案
按热度按时间pokxtpni1#
将
"type": "module"
添加到package.json中,以将上述代码作为模块使用。