如何使用纯JavaScript库,hashids.js的角度?(How do I use pure

2019-10-28 14:54发布

我试图直接导入库

import * as hash from '../../../../node_modules/hashids';

并试图验证码

let id = hash.encode(this.studentDocument.student_id_number); console.log(id);

但它抛出这个错误,可悲。

_node_modules_hashids__WEBPACK_IMPORTED_MODULE_2__.encode is not a function

我甚至试过这种

declare var hash:any;

但它抛出这个错误

hash is not defined

任何提示将不胜感激! (一续本的。 后 )

Answer 1:

您需要创建hashids对象的新实例。

import * as hash from 'hashids';

const hashids = new hash();
const id = hashids.encode(348029348);
console.log(id);


文章来源: How do I use pure javascript library, hashids.js on angular?