Modal.confirm({ className: 'saveAs-modal', title: window.language['playlist.tip'], okText: window.language['playlist.preSaveThenSaveAs'], cancelText: window.language['playlist.saveAsWithoutPreSave'], content: window.language['playlist.des5'], onOk: () => { // this.savePlaylist()(this.showAddPublishOk); console.log("ok============") this.savePlaylist(); console.log("ok============2222") // this.onShowSaveAsModal(); }, onCancel: () => { this.onShowSaveAsModal(); } });请分析一下为什么点击确定按钮后,两个打印语句都执行了,但是
时间: 2024-02-10 07:22:26 浏览: 52
根据代码中的注释,可以看出点击确定按钮后会执行 `this.savePlaylist()`,但是这个函数可能是一个异步函数,也就是说在执行 `console.log("ok============2222")` 之前可能还有一些异步操作没有完成。所以建议在 `this.savePlaylist()` 函数中加入回调函数,在回调函数中再执行 `console.log("ok============2222")`。这样就可以保证在异步操作完成后再执行打印语句。
相关问题
这样设置并不生效,仍然会被下面这个属性替代:.ant-modal.custom-modal.ant-confirm-confirm .ant-modal-content .ant-modal-body .ant-confirm-body-wrapper .ant-confirm-btns .ant-btn
如果你的自定义样式无法覆盖默认样式,你可以使用 `!important` 规则来强制应用自定义样式。例如:
```
import { Modal, Button } from 'antd';
Modal.confirm({
className: 'custom-modal',
title: window.language['playlist.tip'],
content: window.language['playlist.des5'],
okButtonProps: {
style: {
width: '100px',
height: '50px',
},
className: 'custom-ok-button',
},
cancelButtonProps: {
style: {
width: '120px',
height: '50px',
},
className: 'custom-cancel-button',
},
onOk: () => {
// 确认操作
},
onCancel: () => {
// 取消操作
},
});
```
然后在你的 CSS 文件中添加以下代码:
```
.custom-modal .custom-ok-button {
width: 100px !important;
height: 50px !important;
}
.custom-modal .custom-cancel-button {
width: 120px !important;
height: 50px !important;
}
```
这样就可以强制应用自定义样式了。如果你仍然无法覆盖默认样式,你可以使用更具体的 CSS 选择器来定位元素并应用自定义样式。
import {Modal,} from 'antd'; Modal.confirm({ className: 'custom-modal', title: window.language['playlist.tip'], okText: window.language['playlist.saveAsWithoutPreSave'], cancelText: window.language['playlist.preSaveThenSaveAs'], content: window.language['playlist.des5'], onOk: () => { // this.savePlaylist()(this.showAddPublishOk); this.savePlaylist(); this.setState( { saveAsModalVisible: !this.state.saveAsModalVisible }, ); }, onCancel: () => { this.setState( { saveAsModalVisible: !this.state.saveAsModalVisible }, ); } }); 确定和取消的文本太长,如何自定义确定按键和取消按键的宽高
你可以通过设置 Modal.confirm 的 okButtonProps 和 cancelButtonProps 属性来自定义确定按键和取消按键的宽高,例如:
```
import { Modal, Button } from 'antd';
Modal.confirm({
className: 'custom-modal',
title: window.language['playlist.tip'],
content: window.language['playlist.des5'],
okButtonProps: {
style: {
width: '100px',
height: '50px',
},
},
cancelButtonProps: {
style: {
width: '120px',
height: '50px',
},
},
onOk: () => {
// 确认操作
},
onCancel: () => {
// 取消操作
},
});
```
在上面的例子中,我们通过设置 okButtonProps 和 cancelButtonProps 的 style 属性来自定义确定按键和取消按键的宽高。你可以根据需要自定义其他样式属性。
阅读全文