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 inject & observer 的class 类被继承时小程序和H5表现不一致 #4507

Closed
codingwesley opened this issue Sep 23, 2019 · 8 comments
Assignees

Comments

@codingwesley
Copy link

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

当一个 inject & observer 的Class类被继承时,执行的逻辑小程序和H5是有差异的的

小程序正确
H5不正确

复现步骤

我做了一个demo

https://github.com/codingwesley/taro-demo

[复现问题的步骤]
1.

运行 yarn run dev:weapp

小程序运行的控制台能看到log

init parent
index.js:108 test name show === sub child

运行 yarn run dev:weapp

控制台能看到log

undefined "=== sub child"

父级类不会有log

  1. Scroll down to '....'
  2. See error

父级类

import Taro, { Component } from "@tarojs/taro"
import { inject, observer } from "@tarojs/mobx"


@inject("counterStore")
@observer
export class Comp extends Component {
  constructor() {
    super()
    console.log("init parent");
  }

  get name() {
    return "test name show"
  }
}

页面类
```jsx
interface Index {
  props: PageStateProps
}

@inject("counterStore")
@observer
class Index extends Comp {

  render() {
    console.log(this.name, "=== sub child")

    const {
      counterStore: { counter }
    } = this.props
    return (
      <View className="index">
        <Text>{counter}</Text>
      </View>
    )
  }
}

export default Index as ComponentType

期望行为
和小程序的行为保持一致,都有log

系统信息
➜ ~ taro info
👽 Taro v1.3.18

Taro CLI 1.3.18 environment info:
System:
OS: macOS 10.14.6
Shell: 5.3 - /bin/zsh
Binaries:
Node: 10.16.0 - ~/.nvm/versions/node/v10.16.0/bin/node
Yarn: 1.15.2 - ~/.yarn/bin/yarn
npm: 6.9.0 - ~/.nvm/versions/node/v10.16.0/bin/npm

补充信息

我测试过是加了mobx的装饰器引起的,希望能解释一下为什么,谢谢!!!

@taro-bot
Copy link

taro-bot bot commented Sep 23, 2019

欢迎提交 Issue~

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

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

Good luck and happy coding~

@taro-bot
Copy link

taro-bot bot commented Sep 23, 2019

CC @nanjingboy

@nanjingboy
Copy link
Member

nanjingboy commented Sep 24, 2019

@codingwesley 这是因为你的 Comp 没有 render 方法,另外建议只在需要引用 observable 对象时再对组件进行 injectobserver

不好意思,看错了,不是这个原因

@taro-bot
Copy link

taro-bot bot commented Sep 24, 2019

Hello~

您的问题楼上已经有了确切的回答,如果没有更多的问题这个 issue 将在 15 天后被自动关闭。

如果您在这 15 天中更新更多信息自动关闭的流程会自动取消,如有其他问题也可以发起新的 Issue。

Good luck and happy coding~

@nanjingboy
Copy link
Member

@codingwesley 已修复,等新版本发布可再更新试试。

@taro-bot
Copy link

taro-bot bot commented Sep 24, 2019

Hello~

您的问题楼上已经提供了解决方案,如果没有更多的问题这个 issue 将在 15 天后被自动关闭。

如果您在这 15 天中更新更多信息自动关闭的流程会自动取消,如有其他问题也可以发起新的 Issue。

Good luck and happy coding~

@codingwesley
Copy link
Author

@codingwesley 已修复,等新版本发布可再更新试试。

谢谢,下个发布计划是什么时候?

@nanjingboy
Copy link
Member

@codingwesley 也就这几天吧

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