我一直在研究 js-ipfs (0.49.0),这工作正常,但我开始遇到一些问题,无论如何我终于回来再次查看代码并且连接工作正常但是当我尝试上传时我得到了一个新的错误
对象不是异步可迭代的
我不确定这意味着什么或如何在我的代码中解决很多示例是针对 react 而不是 vue
任何指针都非常有用。
methods: {
async getIpfsNodeInfo() {
try {
// Await for ipfs node instance.
node = await ipfs
// console.log(node)
// Call ipfs `id` method.
// Returns the identity of the Peer.
const { agentVersion, id } = await node.id()
this.agentVersion = agentVersion
this.id = id
// Set successful status text.
this.status = 'Connected to IPFS '
} catch (err) {
// Set error status text.
this.status = `Error: ${err}`
}
},
onFileSelected(event) {
this.selectedFile = event.target.files[0]
this.saveIPFS()
},
async saveIPFS() {
try {
for await (const result of node.add(this.selectedFile)) {
this.fileContents = result
this.getIPFS()
}
} catch (err) {
// Set error status text.
this.status = `Error: ${err}`
}
},