本文介绍了crypto.randomBytes不是角度函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我要在angular4中导入 ethereumjs-wallet
I am importing ethereumjs-wallet in angular4,
import EthereumWallet from 'ethereumjs-wallet';
var wallet = EthereumWallet.generate();
const jsV3 = wallet.toV3(passwd);
库中的代码如下所示
var privKey = crypto.randomBytes(32)
抛出错误
如何解决呢?
推荐答案
运行
然后,您需要创建一个文件来修复(解决方法)...就像这样:
and after, you need create a file to fix (workaround)... like this:
var fs = require('fs');
// PACKAGE_ERROR and FILE_ERROR is shown on your error
fs.readFile('./node_modules/[PACKAGE_ERROR]/[FILE_ERROR]', 'utf8', function (err,data) {
if (err) return console.log(err);
var result = data.replace('require(\'crypto\');', 'require(\'crypto-browserify\');');
fs.writeFile('./node_modules/[PACKAGE_ERROR]/[FILE_ERROR]', result, 'utf8', function (err) {
if (err) return console.log(err);
});
});
现在,您需要在package.json上添加安装后代码
Now, you need add the postinstall code on package.json
...
"scripts":{
"postinstall":"node [fixFileName].js",
...
最后,运行:
我希望这会有所帮助!
这篇关于crypto.randomBytes不是角度函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!