web-dev-qa-db-ja.com

toastrに複数行のメッセージを表示する方法

Toastrに複数行のエラーメッセージを表示する方法

エラーメッセージを次のようにフォーマットしました

"Please fix the following: \r\nFirst Name is required\r\nLast Name is required\r\nEmail Address is required\r\n"

しかし、toasrtでは1行で表示されます。助けてください

12
Trilok Pathak

Dr.Stitchが言ったように、文字列をHTMLとして使用するため、新しい行に追加する必要があります。

Please fix the following: </br>First Name is required</br>Last Name is required</br>Email Address is required</br>

これは動作します!!!お手伝いありがとう。

13
Trilok Pathak

allowHtml:true

toastr.success('\'Second Review\' validation has started. </br>All SME\'s and Reviewers will get an email notification', '', { closeButton: true, timeOut: 4000, progressBar: true, allowHtml: true });
11
Bert