gpt4 book ai didi

typescript - TypeError : uuid_1. v5 不是函数

转载 作者:搜寻专家 更新时间:2023-10-30 21:27:16 24 4
gpt4 key购买 nike

正在尝试使用包 uuid 生成 UUID使用这些步骤:

安装

npm i -S uuid @types/uuid

代码

    import { v5 } from 'uuid';
const MY_NAMESPACE = '1b671a64-40d5-491e-99b0-da01ff1f3341';
console.log(v5('Hello, World!', MY_NAMESPACE));

当我运行时,我得到:

    TypeError: uuid_1.v5 is not a function
at Object.<anonymous> (/home/ole/slice/test.ts:3:13)
at Module._compile (internal/modules/cjs/loader.js:654:30)

想法?

最佳答案

DefinitelyTyped 错误:uuid 模块不导出 v5。您的导入应该是:

import v5 = require('uuid/v5');

或者如果你启用了esModuleInterop,你可以使用:

import v5 from 'uuid/v5';

关于typescript - TypeError : uuid_1. v5 不是函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52048772/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com