3

在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 编码的应用程序上运行它。请帮我运行这个。谢谢!

4

1 回答 1

5

该模块的网络信息不正确。当您以您的方式导入脚本时,您必须使用

var hashids = new Hashids.default();

你可能想记录一个关于它的 Github 问题;这显然具有误导性,因为它们明确告诉您完全按照代码执行的操作。

于 2019-11-30T03:28:48.343 回答