-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
单文件多组件渲染/生命周期异常 #4179
Comments
欢迎提交 Issue~ 如果你提交的是 bug 报告,请务必遵循 Issue 模板的规范,尽量用简洁的语言描述你的问题,最好能提供一个稳定简单的复现。🙏🙏🙏 如果你的信息提供过于模糊或不足,或者已经其他 issue 已经存在相关内容,你的 issue 有可能会被关闭。 Good luck and happy coding~ |
Taro 只支持单文件单组件,这里组件和页面不能存在同个文件中 |
@luckyadam 好的我看到了 这里有特意说明。 是否会考虑支持多组件呢未来、毕竟多组件在设计组件库的时候也挺常见的。 举个例子。 我在一个文件里定了多个组件。 const Card = ...;
Card.Header = ...;
Card.Footer = ...;
export default Card; 这样我就能在用的时候组合我的 import Card from "...."
<Card>
<Card.Header>头部</Card.Header>
<Card.Footer>底部</Card.Footer>
</Card> 有点像AntD的Menu。 PS: 有六成的人或多或少这么干过 |
@yuxino 搞个 index 文件聚合在一起再暴露不就可以了么 import Modal from './modal'
import ModalBody from './ModalBody'
import ModalFooter from './ModalFooter'
Modal.body = ModalBody
Modal.footer = ModalFooter
export default Modal |
Hello~ 您的问题楼上已经有了确切的回答,如果没有更多的问题这个 issue 将在 15 天后被自动关闭。 如果您在这 15 天中更新更多信息自动关闭的流程会自动取消,如有其他问题也可以发起新的 Issue。 Good luck and happy coding~ |
@Chen-jj 是的。聚合完全可以解决这个问题。 |
场景
Authority
组件。Authority
用authority
这个状态来控制展示有、无权限的视图。Authority
组件放在了index
页面里遇到的问题
Authority
组件会被调用但是渲染的不正常,三元表达式不会被正常解析?不管有权限还是没权限的组件都会被展示出来。Authority
的componentDidMount
不会执行。bug预览图
正常的版本
Authority
作为组件剥离到了另一个文件夹里,再引入进来Authority
会根据状态展示对应的视图。Authority
的生命周期会被正常执行正常的预览图
复现方式
有两个分支。
work
分支是正常的版本。bug
分支的话是不正常的版本克隆以下仓库
再通过
yarn
安装依赖一些可能要看的信息
The text was updated successfully, but these errors were encountered: