通过 Node 将 base64 图像从 react-webcam 上传到 cloudinary

Uploading a base64 image from react-webcam to cloudinary via Node

我是新来的反应,任何帮助表示赞赏。 在通过 Node.

将 jpg 上传到 cloudinary 时,我有以下代码可以使用

onChange 中调用以下方法;

uploadProfilePic = e => {
  const files = Array.from(this.state.profilePic)
  const formData = new FormData()

  files.forEach((file, i) => {
    formData.append(i, file)
  })
    fetch(`http://localhost:3030/imageUpload`, {
      method: 'POST',
      body: formData
    })
    .then(res => res.json())
    .then(images => {
      this.setState({profilePic: images[0].url})
    })
  }

在我的 server.js 文件中;

  const values = Object.values(req.files)
    const promises = values.map(image => cloudinary.uploader.upload(image.path))

    Promise
      .all(promises)
      .then(results => res.json(results))
  })

以上成功将 jpg 上传到 cloudinary 并按预期将 url 设置为我的状态。

只是想知道如何调整上面的 2 个代码块以便能够上传通过存储在我的状态 [=14] 中的 react-webcam 捕获的 base64 图像* =] 达到相同的结果(也就是上传到 cloudinary 并检索 URL)?

到目前为止我已经试过了

uploadPassImage= e => {

const formData = JSON.stringify(this.state.passImage)

    fetch(`http://localhost:3030/imageUploadPassImage`, {
      method: 'POST',
      body: formData
    })
    .then(res => res.json())
    .then(images => {
      this.setState({passImage: images[0].url})
    })
  }

使用服务器代码;

  app.post('/imageUploadPassImage', (req, res) => {
    const values = Object.values(req.files)
      const promises = values.map(image => cloudinary.uploader.upload(image.path))

      Promise
        .all(promises)
        .then(results => res.json(results))
    })

运气不好。

我明白了。对于任何想知道或遇到同样问题的人,我会 post 在这里。

反应

uploadPassImage= e => {
const files = Array.of(this.state.passImage)


    const formData = new FormData()

    files.forEach((file, i) => {
      formData.append(i, file)
    })
      fetch(`http://localhost:3030/imageUploadPassImage`, {
        method: 'POST',
        body: formData
      })
      .then(res => res.json())
      .then(images => {
        this.setState({passImage: images[0].url}) 
//sets the data in the state for uploading into SQL database later
      })
    }

在服务器上;

app.post('/imageUploadPassImage', (req, res) => {
   const values = Object.values(req.body)
      const promises = values.map(image => cloudinary.v2.uploader.upload(image,
  function(error, result) {console.log(result, error); }));

      Promise
        .all(promises)
        .then(results => res.json(results))
    })