Imported the uuid library and tried to log it out using command, but it shows:TypeError: string is not a function

Imported the uuid library and tried to log it out using command, but it shows:TypeError: string is not a function

我 运行 使用命令提示符的代码,它报告:“字符串不是函数”。

这是我的代码:

const uuid = require('uuid/v1');
const myaddress = uuid().split('-').join('');
console.log(myaddress)

假设您正在使用这个包 https://www.npmjs.com/package/uuid 那么您可能需要指定您想要使用的 API(或版本)的哪一部分。所以使用版本 4 看起来像这样:

const { v4: uuidv4 } = require('uuid');
const myaddress = uuidv4().split('-').join('');
// output might look like "00207ec4afeb4e2ebed0fb9d9d0a5ef2"

https://npm.runkit.com/uuid是一个简单的在线测试代码的工具。