我想在用expo cli构建的ReactNative应用程序中生成一个uuid。当我从UUIDGenerator
安装React-native-uuid-generator
时,我得到了undefined is not an object(evaluating ‘RNUUIDGenerator.getRandomUUID’..)
尝试了两个dif库react-native-uuid
和React-native-uuid-generator
,这是同样的问题,认为这可能与expo不喜欢链接命令有关。
UUIDGenerator.getRandomUUID().then(uuid => console.log(uuid));
期望打印新的uuid,实际上收到错误消息。
答案 0 :(得分:0)
react-native-uuid
可用于博览会。
npm install react-native-uuid --save
import uuid from 'react-native-uuid';
然后生成uuid之类的
const uuid = uuid.v1();