React Js 需要“fs”

IT技术 reactjs webpack fs mashape
2021-04-19 04:26:58

我有

import fs from 'fs'

在我的 package.json 我有

然后我运行命令

>  npm i fs
>  fs@0.0.2 node_modules/fs

接下来在我的 React 商店中导入“fs”module

import fs from 'fs'

但是当我尝试使用 fs

除了构造函数和其他一些 __methods 之外,我看不到方法。我没有看到 createReadStream 方法或任何其他文件操作方法。

有人知道出了什么问题吗?(使用 Webpack)并且可以根据要求提供更多信息,但我已经走了这么远......

ps:为什么我可以 npm i fs --save 当我阅读其他不需要这样做的帖子时(使用节点 5.5.0)

import Reflux from 'reflux'
import AddItemActions from '../actions/AddItemActions'
import request from  'superagent-bluebird-promise'
import fs from 'fs'

var ImageStore = Reflux.createStore({
  init(){
    .
    .
    .
  },

  decryptImage(file) {
    var reader = new FileReader();
    var info = {}
    reader.onload = (output) => {
      debugger
      request.post("https://camfind.p.mashape.com/image_requests")
        .set("X-Mashape-Key", "KEY")
        .set("Content-Type", "application/x-www-form-urlencoded")
        .set("Accept", "application/json")
        .send({'focus': { 'x': 480}})
        .send({'focus': { 'y': 640}})
        .send({'image_request': {'altitude': 27.912109375}})
        .send({'image_request': {'language': "en"}})
        .send({'image_request': {'latitude': 35.8714220766008}})
        .send({'image_request': {'locale' : "en_US"}})
        .send({'image_request': {'longitude': 14.3583203002251}})
        .send({'image_request': {'image': fs.createReadStream("/path" + 'file.jpg')}})
        .then(function (result) {
          console.log(result.status, result.headers, result.body);
          this.info = result
        },
          function(error) {
            console.log(error);
        })
    }

    reader.readAsDataURL(file);
    return info
  },
  .
  .
  .
  .
})

2个回答

create-react-app他们已经排除了'fs'。你不能导入它。他们这样做fs因为它是一个节点核心module。
你必须找到另一个解决这个问题的方法。看到这张票。

这可能是环境问题。浏览器不可能解释和运行一些 Node 服务器端module,比如fs.

解决方案是fs在 Node 环境(服务器端)中运行这些方法,或者找到一个提供相同功能但为浏览器编写的包。

在这个问题中讨论了...... 找不到module:错误:无法解析module'fs'

还有这个问题... 在 React.js、node.js、webpack、babel、express 中使用 fs module

这是一个关于在客户端集成 fs 功能的好主题。stackoverflow.com/questions/46467858/...
2021-06-05 04:26:58