当我尝试使用require加载一个模块时,它在终端上运行良好,但在浏览器中不起作用:const express = require("express"); Uncaught ReferenceError: require is not defined 然后我试了试import express from 'express';,它显示: Uncaught SyntaxError: Cannot use import statement outside a module 然后有人建议将type="module"添加到我的脚本中,它抛出另一个错误,说: