mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 17:09:46 +08:00
61 lines
1.1 KiB
Markdown
61 lines
1.1 KiB
Markdown
|
# 国际化
|
||
|
|
||
|
- order: 6
|
||
|
|
||
|
设置 `okText` 与 `cancelText` 以自定义按钮文字。
|
||
|
|
||
|
---
|
||
|
|
||
|
````jsx
|
||
|
import { Modal, Button } from 'antd';
|
||
|
|
||
|
const LocalizedModal = React.createClass({
|
||
|
getInitialState() {
|
||
|
return { visible: false };
|
||
|
},
|
||
|
showModal() {
|
||
|
this.setState({
|
||
|
visible: true
|
||
|
});
|
||
|
},
|
||
|
handleOk() {
|
||
|
this.setState({
|
||
|
visible: false
|
||
|
});
|
||
|
},
|
||
|
handleCancel() {
|
||
|
this.setState({
|
||
|
visible: false
|
||
|
});
|
||
|
},
|
||
|
render() {
|
||
|
return <div>
|
||
|
<Button type="primary" onClick={this.showModal}>Show Modal</Button>
|
||
|
<Modal title="Modal" visible={this.state.visible}
|
||
|
onOk={this.handleOk} onCancel={this.handleCancel}
|
||
|
okText="OK" cancelText="Cancel">
|
||
|
<p>Bla bla ...</p>
|
||
|
<p>Bla bla ...</p>
|
||
|
<p>Bla bla ...</p>
|
||
|
</Modal>
|
||
|
</div>;
|
||
|
}
|
||
|
});
|
||
|
|
||
|
function confirm() {
|
||
|
Modal.confirm({
|
||
|
title: 'Confirm',
|
||
|
content: 'Bla bla ...',
|
||
|
okText: 'OK',
|
||
|
cancelText: 'Cancel'
|
||
|
});
|
||
|
}
|
||
|
|
||
|
ReactDOM.render(<div>
|
||
|
<LocalizedModal />
|
||
|
<br />
|
||
|
<Button onClick={confirm}>confirm</Button>
|
||
|
</div>, document.getElementById('components-modal-demo-locale'));
|
||
|
````
|
||
|
|