你可以让一个烤面包机持续 30 秒,而其余的保持默认时间吗?我似乎无法弄清楚这是否可能。我尝试了以下方法:
toastr.info('Message here', 'Title', {'timeout': '30000'});
和
toastr.info({'message':'Message Here', 'title': 'Title', 'timeout': '30000'});
和
toastr.info('Message Here', 'Title', 'timeout'=='30000');
无济于事。
ETA:有一个拼写错误。timeout
timeOut 或 30000 周围应该也不应该timeOut
有任何引号。
解决方案
toastr.info('Message here', 'Title', {timeOut: 30000});