1 回答

TA貢獻(xiàn)1785條經(jīng)驗(yàn) 獲得超8個(gè)贊
你不能嵌入toastr.resp.type,它是無效的,因此會(huì)拋出一個(gè)錯(cuò)誤。
據(jù)我了解,下面的代碼可以按您的意愿工作
.done(function(resp)
{
toastr[resp.type](resp.message, resp.status,{progressBar:!0,showMethod:"slideDown",hideMethod:"slideUp",timeOut:2e3,preventDuplicates: true,positionClass: "toast-bottom-right"});
});
請(qǐng)將此視為參考:https ://github.com/CodeSeven/toastr/issues/203
function showToast(message, timeout, type) {
type = (typeof type === 'undefined') ? 'info' : type;
toastr.options.timeOut = timeout;
toastr[type](message);
}
showToast('Hello Toastr!", 15000, 'warning');
- 1 回答
- 0 關(guān)注
- 77 瀏覽
添加回答
舉報(bào)