Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

使用了redux如何用devtools #32

Open
alinjiajun opened this issue Apr 12, 2019 · 4 comments
Open

使用了redux如何用devtools #32

alinjiajun opened this issue Apr 12, 2019 · 4 comments

Comments

@alinjiajun
Copy link

使用了redux,但是需要devtools观察数据 参考了这个链接的处理,但是require了remote-redux-devtools.js出现报错

@imyelo
Copy link
Member

imyelo commented Apr 12, 2019

请问报什么错呢?

我看了一下你的 链接,如果在配合 mina-webpack 使用的话,文中 4. 微调加载方式 可以跳过。

@alinjiajun
Copy link
Author

构建没有报错,但是微信小程序报错了 好像是这个js的引入方式不对。
image

这个链接我只用了引入集成Redux-devtools,因为redux本身tina已经有了
你们项目使用redux没有用devtools的吗?

@imyelo
Copy link
Member

imyelo commented Apr 12, 2019

之前都没有,说起来这篇文章还挺实用。

我试了下能正常运行了,你遇到的情况应该是因为 他修改后的包 做了 UMD 打包,所以在 mina-webpack 的配置下面需要单独禁止这个文件使用 babel-loader 重复编译:

// webpack.config.js

// ...
  module: {
    rules: [
      {
        test: /\.js$/,
-       exclude: /node_modules/,
+       exclude: [
+         /node_modules/,
+         resolve('src/libs/remote-redux-devtools.js'), // 你存放 remote-redux-devtools.js 文件的位置
+       ],
        use: 'babel-loader',
      },
// ...

@alinjiajun
Copy link
Author

非常感谢及时的帮我解决问题。采用了你的方式已经成功跑起来了

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants