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

constructor 调用两次 #3343

Closed
archiewx opened this issue Jun 6, 2019 · 7 comments
Closed

constructor 调用两次 #3343

archiewx opened this issue Jun 6, 2019 · 7 comments
Labels
question Further information is requested

Comments

@archiewx
Copy link

archiewx commented Jun 6, 2019

Feature Request 请提到 FeatHub

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

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

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

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

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

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

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

微信小程序中constructor 会调用两次。

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

  1. 创建一个类组件
  2. 初始化constructor

image

image

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

// 这里可以贴代码

// ```js
// 代码放这里(前后的 "```" 有助 Mardown 整理代码格式和加入代码高亮)
// ```

// 提供完整可复现的代码和整理好代码格式,有助于我们快速定位问题,节省你我时间。
// 代码提供不全或代码格式混乱的 issues 【有可能被忽略】,烦请各位注意。

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

报错信息

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

系统信息

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

  • 操作系统: [e.g. Windows 10] Macos
  • Taro 版本 [e.g. v.0.0.64] 1.3.0-beta.5
  • Node.js 版本 [e.g. v9.0.0] 10.13
  • 报错平台 [h5, weapp] weapp

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

@taro-bot
Copy link

taro-bot bot commented Jun 6, 2019

欢迎提交 Issue~

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

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

Good luck and happy coding~

@Garfield550
Copy link
Collaborator

是的,目前 constructor 调用两次会对你的小程序逻辑造成很严重的影响吗?麻烦补充一下这些信息。

@archiewx
Copy link
Author

archiewx commented Jun 6, 2019

是的,目前 constructor 调用两次会对你的小程序逻辑造成很严重的影响吗?麻烦补充一下这些信息。

是这样的。最近需要初始化,但是发现constructor 会两次初始化.一次有默认值,一次没有。很奇怪。最重要我这里需要在初始化的情况下获取this.props.value 这个值,似乎发现value传递不进去,不知道为啥。Taro很强大,有考虑做UI库,目前在开发阶段。希望和你们更多的沟通

@Chen-jj Chen-jj added answered question Further information is requested labels Jun 6, 2019
@archiewx
Copy link
Author

archiewx commented Jun 6, 2019

@zsirfs https://nervjs.github.io/taro/docs/best-practice.html#%E7%BB%84%E4%BB%B6%E7%9A%84-constructor-%E4%B8%8E-render-%E6%8F%90%E5%89%8D%E8%B0%83%E7%94%A8

抱歉。我再看看这里,最近做的一帆顺风忘记看了。最近需要级联操作,做到相关的出现了这个问题

@Chen-jj
Copy link
Contributor

Chen-jj commented Jun 6, 2019

@zsirfs 初始化两次一般不影响,constructor 通过参数获取 props。

constructor (props) {
  console.log('props: ', props)
}

@archiewx
Copy link
Author

archiewx commented Jun 6, 2019

@zsirfs 初始化两次一般不影响,constructor 通过参数获取 props。

constructor (props) {
  console.log('props: ', props)
}

晓得。但是我现在遇到问题是这样的PickerView 中的value 我通过getValue() 返回值,发现UI无法重绘

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

No branches or pull requests

3 participants