ant-design/components/spin/demo/nested.md

36 lines
831 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 3
title: 卡片加载中
---
2015-10-31 02:00:03 +08:00
可以直接把内容内嵌到 `Spin` 中,将现有容器变为加载状态。
````jsx
2015-11-03 22:41:57 +08:00
import { Spin, Switch, Alert } from 'antd';
2015-10-31 02:00:03 +08:00
const Card = React.createClass({
getInitialState() {
2016-05-09 16:11:54 +08:00
return { loading: false };
2015-10-31 02:00:03 +08:00
},
toggle(value) {
2016-05-09 16:11:54 +08:00
this.setState({ loading: value });
2015-10-31 02:00:03 +08:00
},
render() {
const container = (
<Alert message="消息提示的文案"
description="消息提示的辅助性文字介绍消息提示的辅助性文字介绍消息提示的辅助性文字介绍"
type="info"
/>
);
return (
<div>
2016-05-09 16:11:54 +08:00
<Spin spinning={this.state.loading}>{container}</Spin>
切换加载状态:<Switch checked={this.state.loading} onChange={this.toggle} />
</div>
);
2016-05-11 09:32:33 +08:00
},
2015-10-31 02:00:03 +08:00
});
ReactDOM.render(<Card />, mountNode);
2015-10-31 02:00:03 +08:00
````