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

开发微信小程序的时候使用 Mobx,每次修改代码之后,小程序的运行结果都没有更新 #2221

Closed
pftom opened this issue Feb 20, 2019 · 3 comments

Comments

@pftom
Copy link
Member

pftom commented Feb 20, 2019

Feature Request 请提到 FeatHub

如果是提交 bug,请搜索文档和 issue,确认以下事项:

  • 该问题没有在其他 issue 和文档讨论到,不属于重复内容

  • 分割线以下的模板除了「 补充信息」每一样都必填

如果不满足以上两点要求的 bug 报告,issue 会被直接关掉。

请多多理解,您现在的不便将会使 Taro 开发者更高效地定位你的问题,修复你的问题。像你一样的 Taro 的使用者也可以通过搜索找到你提供的 bug,对各方都有很大好处。

🙏🙏🙏
阅读完后请在提交的issue中删除以上内容,包括分割线。

问题描述
[问题描述:站在其它人的角度尽可能清晰地、简洁地把问题描述清楚]

在开发微信小程序时使用 Mobx,在终端使用 npm run dev:weapp 之后,使用微信小程序编辑器打开项目,可以预览项目,但是每次修改 Mobx Store 代码,微信小程序里面的内容没有更新。

复现步骤
[复现问题的步骤]

  1. 打开项目,使用 npm run dev:weapp 开启项目,使用微信小程序编辑器打开项目,开始预览

image

  1. 修改 Mobx store 代码,在终端打印内容,保存,微信小程序编辑器自动刷新,但是终端打印结果没有变化

image

[或者可以直接贴源代码,能贴文字就不要截图]

【appStore.js】

import { observable, runInAction, configure, flow } from "mobx";
import Taro from "@tarojs/taro";

configure({ enforceActions: "observed" });

const appStore = observable({
  token: 4
});

export default appStore;

【/pages/Index/index.js】

import Taro, { Component } from "@tarojs/taro";
import { View, Button, Text } from "@tarojs/components";
import { observer, inject } from "@tarojs/mobx";

import "./index.less";

@inject("appStore")
@observer
class Index extends Component {
  config = {
    navigationBarTitleText: "首页"
  };

  componentWillMount() {}

  componentWillReact() {
    console.log("componentWillReact");
  }

  componentDidMount() {}

  componentWillUnmount() {}

  componentDidShow() {}

  componentDidHide() {}

  render() {
    const { appStore } = this.props;
    console.log("appStore.token", appStore.token);
    return (
      <View className="index">
        <Text>Hello World</Text>
      </View>
    );
  }
}

export default Index;

【app.js】

import Taro, { Component } from "@tarojs/taro";
import { Provider } from "@tarojs/mobx";
import Index from "./pages/index";

import appStore from "./store/app";

import "./app.less";

// 如果需要在 h5 环境中开启 React Devtools
// 取消以下注释:
// if (process.env.NODE_ENV !== 'production' && process.env.TARO_ENV === 'h5')  {
//   require('nerv-devtools')
// }

const store = {
  appStore: appStore
};

class App extends Component {
  config = {
    pages: ["pages/index/index", "pages/signup/index"],
    window: {
      backgroundTextStyle: "light",
      navigationBarBackgroundColor: "#fff",
      navigationBarTitleText: "WeChat",
      navigationBarTextStyle: "black"
    }
  };

  componentDidMount() {}

  componentDidShow() {}

  componentDidHide() {}

  componentDidCatchError() {}

  // 在 App 类中的 render() 函数没有实际作用
  // 请勿修改此函数
  render() {
    return (
      <Provider store={store}>
        <Index />
      </Provider>
    );
  }
}

Taro.render(<App />, document.getElementById("app"));

期望行为
[这里请用简洁清晰的语言描述你期望的行为]

希望修改 token 值之后,微信开放者工具中的值能改变。

报错信息

[这里请贴上你的完整报错截图或文字]

系统信息

Taro v1.2 及以上版本已添加 taro info 命令,方便大家查看系统及依赖信息,运行该命令后将结果贴下面即可。

  • 操作系统: [e.g. Windows 10]
  • Taro 版本 [e.g. v.0.0.64]
  • Node.js 版本 [e.g. v9.0.0]
  • 报错平台 [h5, weapp]
 Taro v1.2.13


  Taro CLI 1.2.13 environment info:
    System:
      OS: macOS 10.14.3
      Shell: 5.3 - /bin/zsh
    Binaries:
      Node: 8.11.2 - /usr/local/bin/node
      Yarn: 1.13.0 - /usr/local/bin/yarn
      npm: 6.5.0 - /usr/local/bin/npm
    npmPackages:
      @tarojs/components: 1.2.13 => 1.2.13
      @tarojs/mobx: 1.2.13 => 1.2.13
      @tarojs/mobx-h5: 1.2.13 => 1.2.13
      @tarojs/mobx-rn: 1.2.13 => 1.2.13
      @tarojs/plugin-babel: 1.2.13 => 1.2.13
      @tarojs/plugin-csso: 1.2.13 => 1.2.13
      @tarojs/plugin-less: 1.2.13 => 1.2.13
      @tarojs/plugin-uglifyjs: 1.2.13 => 1.2.13
      @tarojs/rn-runner: 1.2.13 => 1.2.13
      @tarojs/router: 1.2.13 => 1.2.13
      @tarojs/taro: 1.2.13 => 1.2.13
      @tarojs/taro-alipay: 1.2.13 => 1.2.13
      @tarojs/taro-h5: 1.2.13 => 1.2.13
      @tarojs/taro-swan: 1.2.13 => 1.2.13
      @tarojs/taro-tt: 1.2.13 => 1.2.13
      @tarojs/taro-weapp: 1.2.13 => 1.2.13
      @tarojs/webpack-runner: 1.2.13 => 1.2.13
      eslint-config-taro: 1.2.13 => 1.2.13
      eslint-plugin-taro: 1.2.13 => 1.2.13
      nervjs: ^1.3.9 => 1.3.12
    npmGlobalPackages:
      typescript: 2.9.0-dev.20180427

补充信息
[可选]
[根据你的调查研究,出现这个问题的原因可能在哪里?]

@taro-bot
Copy link

taro-bot bot commented Feb 20, 2019

欢迎提交 Issue~

如果你提交的是 bug 报告,请务必遵循 Issue 模板的规范,尽量用简洁的语言描述你的问题,最好能提供一个稳定简单的复现。🙏🙏🙏

如果你的信息提供过于模糊或不足,或者已经其他 issue 已经存在相关内容,你的 issue 有可能会被关闭。

Good luck and happy coding~

@luckyadam
Copy link
Member

是小程序开发工具没有刷新还是?

@pftom
Copy link
Member Author

pftom commented Feb 22, 2019

谜一般的修复了...😅

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