第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何顯示帶有動(dòng)態(tài)變量的 toastr 消息

如何顯示帶有動(dòng)態(tài)變量的 toastr 消息

PHP
暮色呼如 2022-10-28 15:26:42
我正在使用 Toastr 在 UI 中顯示消息彈出窗口。我通過 Ajax 向服務(wù)器發(fā)送請(qǐng)求,作為響應(yīng),我發(fā)送以下響應(yīng)echo json_encode(                    array(                            "type" => "error",                            "message" => $error,                            "status" => "Error While Updating!"                         )                );我正在使用 resp.type 來顯示動(dòng)態(tài) toastr 所以下面是我的 toastr 代碼.done(function(resp)    {        toastr.resp.type(resp.message, resp.status,{progressBar:!0,showMethod:"slideDown",hideMethod:"slideUp",timeOut:2e3,preventDuplicates: true,positionClass: "toast-bottom-right"});    });上面代碼的問題是,當(dāng)代碼運(yùn)行時(shí),它會(huì)拋出一個(gè)錯(cuò)誤消息Uncaught TypeError: toastr.type is not a function任何人都可以幫我解決問題所在或此處可能是正確的解決方案
查看完整描述

1 回答

?
慕的地10843

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');


查看完整回答
反對(duì) 回復(fù) 2022-10-28
  • 1 回答
  • 0 關(guān)注
  • 77 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)