如果在完成警报窗口重新加载后,bootbox警报会变淡

时间:2017-08-06 18:58:40

标签: angular-ui-bootstrap bootbox

如果按照下面提到的代码完成窗口重新加载,则bootstrap bootbox警报会变淡。如果有人知道解决方案,请帮助。

bootbox.alert("已成功创建货件。\ n交易哈希是:" +数据) window.location.reload();

1 个答案:

答案 0 :(得分:2)

这涵盖在多个地方in the documentation。重申:您的location.reload来电需要在回调中:

bootbox.alert("Successfully created shipment. \n Transaction Hash is:" + data, function(){ window.location.reload(); });

bootbox.alert({
    message: "Successfully created shipment. \n Transaction Hash is:" + data),
    callback: function(){ 
        window.location.reload();
    }
});