我使用create-react-app
生成了一个应用,我想使用它
crypto-js
我收到以下错误
crypto.sha256() is not a function
答案 0 :(得分:2)
你必须使用
安装crypto-jsnpm install crypto-js
在你的js文件中,你必须导入你想要使用的模块
import sha256 from 'crypto-js/sha256';
现在您可以使用这些功能
sha256(nonce + message);
您必须在此
之前定义message
和nonce