前提・実現したいこと
jsでトーストを利用するためにtoastrを使っています。
以下のようにjsファイルから関数を読み込んで利用したいのですが、実際optionsが反映されていないトーストが出てしまいます。
何が原因でしょうか。
ご教授お願いします。
####参考
https://codeseven.github.io/toastr/demo.html
https://github.com/CodeSeven/toastr
該当のソースコード
js
1import toastr from "./toastr.js" 2 3//省略 4toast("エラーです", "error")
js
1import toastr from "toastr"; 2 3function toast(message, type){ 4 toastr.options = { 5 "closeButton": false, 6 "debug": false, 7 "newestOnTop": false, 8 "progressBar": false, 9 "positionClass": "toast-top-right", 10 "preventDuplicates": false, 11 "onclick": null, 12 "showDuration": "300", 13 "hideDuration": "1000", 14 "timeOut": "5000", 15 "extendedTimeOut": "1000", 16 "showEasing": "swing", 17 "hideEasing": "linear", 18 "showMethod": "fadeIn", 19 "hideMethod": "fadeOut" 20 } 21 22 if(type=="success"){ 23 toastr["success"](message); 24 }else if(type=="error"){ 25 toastr["error"](message); 26 } 27} 28 29export default toast;
原因の究明がしたいのなら、お母さんに頼んでも同じ現象を再現できるような詳細な説明を書いてください。
あなたの回答
tips
プレビュー