antd/antd-mobile, Drawer组建内容不显示
第一次倒腾antd/antd-mobile, Drawer组建内容不显示,麻烦大家帮忙看看。
贴上代码:
import React, { Component } from 'react';
import { Drawer, List } from 'antd-mobile';
class CategoryDrawer extends Component {
constructor(props) {
super(props);
this.state = {
open: true,
position: 'left'
};
this.getSidebar = () => (
<div>
<h1>分类内容</h1>
<List>
{
Array(20).map((i, index) => {
return (
<List.Item key={index} multipleLine>
分类{index + 1}
</List.Item>);
})
}
</List>
</div>
);
this.sidebar = '';
}
componentDidMount() {
console.log('change sidebar');
this.sidebar = this.getSidebar();
}
onOpenChange() {
console.log(this.state.open);
alert(this.state.open);
}
render() {
return (
<div>
<Drawer
open={this.state.open}
onOpenChange={this.onOpenChange.bind(this)}
sidebar={this.sidebar}
docked={false}
contentStyle = {{
backgroundColor: '#fff'
}}
>
{ this.sidebar }
</Drawer>
</div>
);
}
}
export default CategoryDrawer;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
componentDidMount 之后 this.sidebar 才被赋值,但是没有 state 或 props 的变更, react 是不会 rerender 的。
建议你先学习一下 react 更新 UI 的方式。