Toastrに複数行のエラーメッセージを表示する方法
エラーメッセージを次のようにフォーマットしました
"Please fix the following: \r\nFirst Name is required\r\nLast Name is required\r\nEmail Address is required\r\n"
しかし、toasrtでは1行で表示されます。助けてください
Dr.Stitchが言ったように、文字列をHTMLとして使用するため、新しい行に追加する必要があります。
Please fix the following: </br>First Name is required</br>Last Name is required</br>Email Address is required</br>
これは動作します!!!お手伝いありがとう。
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 });