我尝试直接导入库
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
任何提示将不胜感激!(这篇文章的续篇)