在https://www.npmjs.com/package/hashids运行教程中的代码
<script type="text/javascript" src="js/hashids.min.js"></script>
<script type="text/javascript">
var hashids = new Hashids();
console.log(hashids.encode(1));
</script>
得到错误:Uncaught TypeError: Hashids is not a constructor.
我在没有模块的 vanilla js 应用程序中运行它。只是 html 和 js 文件。如果我使用reqire(hasids)
它会弹出错误:require is not defined
. 我需要在使用常规浏览器 javascript 编码的应用程序上运行它。请帮我运行这个。谢谢!