如何在 angular 上使用纯 javascript 库,hashids.js?
How do I use pure javascript library, hashids.js on angular?
我试过直接导入库
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
如有任何提示,我们将不胜感激!
(续post)
您需要创建 hashids 对象的新实例。
import * as hash from 'hashids';
const hashids = new hash();
const id = hashids.encode(348029348);
console.log(id);
我试过直接导入库
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
如有任何提示,我们将不胜感激! (续post)
您需要创建 hashids 对象的新实例。
import * as hash from 'hashids';
const hashids = new hash();
const id = hashids.encode(348029348);
console.log(id);