基于以太坊Ethereum & IPFS的去中心化Ebay区块链项目详情链接
选择图片,点击Submit
将图片提交到IPFS
,并且返回IPFS
的HASH
值,再通过HASH
从IPFS
读取图片。
具体不知道怎么操作的,请移步到【IPFS + 区块链 系列】 入门篇 - IPFS + Ethereum (上篇)-js-ipfs-api。
$ create-react-app ipfs_img
UI
逻辑将下面的代码拷贝替换掉App.js
里面的代码。
import React, {Component} from 'react'
class App extends Component {
constructor(props) {
super(props)
this.state = {
imgSrc: null
}
}
render() {
return (<div className="App">
<h2>上传图片到IPFS:</h2>
<div>
<label id="file">Choose file to upload</label>
<input type="file" ref="file" id="file" name="file" multiple="multiple"/>
</div>
<div>
<button onClick={() => {
var file = this.refs.file.files[0];
var reader = new FileReader();
// reader.readAsDataURL(file);
reader.readAsArrayBuffer(file)
reader.onloadend = (e) => {
console.log(reader);
// 上传数据到IPFS
}
}}>Submit</button>
</div>
{
this.state.imgSrc
? <div>
<h2>{"http://localhost:8080/ipfs/" + this.state.imgSrc}</h2>
<img alt="区块链部落" style={{
width: 1600
}} src={"http://localhost:8080/ipfs/" + this.state.imgSrc}/>
</div>
: <img alt=""/>
}
</div>);
}
}
export default App
ipfs-api
localhost:1126 yuechunli$ cd ipfs_img/
localhost:ipfs_img yuechunli$ ls
README.md package.json src
node_modules public yarn.lock
localhost:ipfs_img yuechunli$ npm install --save-dev ipfs-api
App.js
导入IPFSconst ipfsAPI = require('ipfs-api');
const ipfs = ipfsAPI({host: 'localhost', port: '5001', protocol: 'http'});
let saveImageOnIpfs = (reader) => {
return new Promise(function(resolve, reject) {
const buffer = Buffer.from(reader.result);
ipfs.add(buffer).then((response) => { console.log(response) resolve(response[0].hash); }).catch((err) => { console.error(err) reject(err); }) }) }
var file = this.refs.file.files[0];
var reader = new FileReader();
// reader.readAsDataURL(file);
reader.readAsArrayBuffer(file)
reader.onloadend = function(e) {
console.log(reader);
saveImageOnIpfs(reader).then((hash) => { console.log(hash); this.setState({imgSrc: hash}) });
reader.readAsDataURL(file);
上传图片路径。reader.readAsArrayBuffer(file)
上传图片内容saveImageOnIpfs(reader).then((hash) => { console.log(hash); this.setState({imgSrc: hash}) });
hash
即是上传到IPFS
的图片的HASH
地址,this.setState({imgSrc: hash})
将hash
保存到状态机变量imgSrc
中。
import React, {Component} from 'react'
const ipfsAPI = require('ipfs-api');
const ipfs = ipfsAPI({host: 'localhost', port: '5001', protocol: 'http'});
let saveImageOnIpfs = (reader) => {
return new Promise(function(resolve, reject) {
const buffer = Buffer.from(reader.result);
ipfs.add(buffer).then((response) => { console.log(response) resolve(response[0].hash); }).catch((err) => { console.error(err) reject(err); }) }) } class App extends Component { constructor(props) { super(props) this.state = { imgSrc: null } } render() { return (<div className="App"> <h2>上传图片到IPFS:</h2> <div> <label id="file">Choose file to upload</label> <input type="file" ref="file" id="file" name="file" multiple="multiple"/> </div> <div> <button onClick={() => { var file = this.refs.file.files[0]; var reader = new FileReader(); // reader.readAsDataURL(file); reader.readAsArrayBuffer(file) reader.onloadend = (e) => { console.log(reader); // 上传数据到IPFS saveImageOnIpfs(reader).then((hash) => { console.log(hash); this.setState({imgSrc: hash}) }); } }}>Submit</button> </div> { this.state.imgSrc ? <div> <h2>{"http://localhost:8080/ipfs/" + this.state.imgSrc}</h2> <img alt="区块链部落" style={{ width: 1600 }} src={"http://localhost:8080/ipfs/" + this.state.imgSrc}/> </div> : <img alt=""/> } </div>); } } export default App
npm start
ipfs daemon
这本文章主要复习如何创建React项目,如何安装ipfs-api
,如何编写上传图片到IPFS
的Promise
函数,下一篇我们将介绍,如何将图片hash
存储到区块链,如何从区块链取到hash
,并且通过hash
从ipfs
拿到图片。
348924182
liyc1215