ant-design/components/notification/demo/duration.md
2015-08-06 15:32:18 +08:00

644 B
Raw Blame History

不自动消失

  • order: 6

将 duration 配置为 null 即可。


var notification = require('antd/lib/notification');

var openNotification = function() {
  notification.open({
    message: "这是标题",
    description: "这是提示框的文案这是提示框的文案这是提示框的文案这是提示框的文案这是提示框的文案这是提示框的文案这是提示框的文案",
    duration: null
  });
};

React.render(
  <button className="ant-btn ant-btn-primary" onClick={openNotification}>显示通知不自动消失</button>
, document.getElementById('components-notification-demo-duration'));