第二次使用 ipfs add 失败

Using ipfs add a second time fails

我跟着 ipfs tutorial in the docs。我创建了一个简单的网页。我执行了以下命令

ipfs daemon
mkdir simple-webpage
cd simple-webpage
nano index.html
cd ..
ipfs add -r simple-webpage/

在使用 nano index.html 时,我输入了一些基本的 HTML 代码。然后我用https://ipfs.io/ipfs/webpage-hash访问了页面。对于网页哈希,我输入了为目录输出的最后一个命令的哈希。 link 为我访问网页工作。 但是,当第二次尝试使用一些不同的内容时,我没有成功,并且当 运行 ipfs add -r second-page/ 无法访问该页面时,输出的散列。

为什么ipfs add第二次使用会失败?

你能从你添加它的节点看到页面吗?也就是说,http://127.0.0.1:8080/ipfs/webpage-hash, if you're doing all of this on your local machine. If not, you might be handling the hash wrong. If you are, well, publishing to and resolving from the IPFS DHT are not a always-and-immediate thing, it seems… Maybe try another gateway?