我正在尝试运行下面的代码。当我使用 node 命令运行时,它运行完美。
const IPFS = require('ipfs')
const series = require('async/series')
const node = new IPFS()
let fileMultihash
series([
(cb) => node.on('ready', cb),
(cb) => node.version((err, version) => {
if (err) { return cb(err) }
console.log('Version:', version.version)
cb()
}),
(cb) => node.files.add({
path: 'hello.txt',
content: Buffer.from('Hello this is test asi394298')
}, (err, filesAdded) => {
if (err) { return cb(err) }
console.log('\nAdded file:', filesAdded[0].path, filesAdded[0].hash)
fileMultihash = filesAdded[0].hash
cb()
}),
(cb) => node.files.cat(fileMultihash, (err, data) => {
if (err) { return cb(err) }
console.log('\nFile content:')
process.stdout.write(data)
})
])
但是,当我通过 browserify 运行它并将其添加到我的网站时,我从脚本中收到此错误。
err {type: "WriteError", name: "WriteError", cause: undefined, message: "QuotaExceededError", stack: "WriteError: QuotaExceededError↵ at http://local…rt (http://localhost/papyrcoin/bundle.js:87990:5)"}
我不确定这意味着什么或如何解决它。有人可以帮忙吗?