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

1.2.7下小程序使用mobx出现的问题 #1950

Closed
Herryjoeson opened this issue Jan 16, 2019 · 9 comments
Closed

1.2.7下小程序使用mobx出现的问题 #1950

Herryjoeson opened this issue Jan 16, 2019 · 9 comments

Comments

@Herryjoeson
Copy link

问题描述
1.2.7下小程序使用mobx出现的问题

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

  1. 发起网络请求
  2. 更新mobx数据
  3. 检测到数据更新了
    4.页面没更新

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

// 发起网络请求
const { categoryStore } = this.props;
        categoryStore
            .fetchGoodsCategoryData()
            .then(
                res => {
                    categoryStore.upgradeState({ categoryItems: res.data.content })
                }
            );
// 迭代数据
{
  categoryItems.map((item, index) => {
            return (
                  <View
                         key={index}
                         onClick={this.tapCategory.bind(this, index)}
                         className={index === currentCategoryIndex ? "parent active" : "parent"}
                       >
                        {item.category_name}
                  </View>
           );
    })
 }

// 具体可以看下面图片

期望行为
页面能出现数据

报错信息
// 发起网络
image
// 检查数据源是否更新
image
// 数据更新了
image
// 页面没有更新
image
// 最奇怪的bug,我在map输出了console.log对应的map的value
image
// 页面发生变化
image
// 因为1.2.7的版本h5缺失了文件,无法查看是否和小程序一样这样的问题,但是我在1.2.4版本没有问题
系统信息

  • 操作系统: [e.g. MacOs]
  • Taro 版本 [e.g. v.1.2.7]
  • Node.js 版本 [e.g. v9.2.0]
  • 报错平台 [weapp]

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

@taro-bot
Copy link

taro-bot bot commented Jan 16, 2019

欢迎提交 Issue~

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

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

Good luck and happy coding~

@Herryjoeson
Copy link
Author

我把mobx升级到5.8.0就没有问题了,之前用的是4.8.0

@Herryjoeson
Copy link
Author

Herryjoeson commented Jan 16, 2019

看到了issue #1710,就使用了4.8.0就出现这个问题 5.8.0没有问题

@Herryjoeson
Copy link
Author

Herryjoeson commented Jan 16, 2019

@nanjingboy 大佬你的那个issue的mobx优化,降下来了就有问题了

@nanjingboy
Copy link
Member

@Herryjoeson 看下 https://mobx.js.org/index.html 中 MobX 4 vs MobX 5 这一节中关于数组的描述。

@nanjingboy
Copy link
Member

nanjingboy commented Jan 16, 2019

@Herryjoeson mobx4 和 mobx5 之间的差异这个在 mobx 的官方文档中都有很清晰的解释啊,降级是为了兼容有些低版本手机浏览器的

@nanjingboy
Copy link
Member

@Herryjoeson 相关问题:#1237 (comment)

@Herryjoeson
Copy link
Author

好的。我已经看了文档了解了

@yuquanwang
Copy link

@Herryjoeson mobx4 和 mobx5 之间的差异这个在 mobx 的官方文档中都有很清晰的解释啊,降级是为了兼容有些低版本手机浏览器的

能否给出支持mobx5具体小程序对应版本或ios、andriod版本列表?看到小程序文档上对proxy特性的支持:andriod不支持,有点心慌慌。。。

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

3 participants