2016-04-28 506 views
4

toastrに複数行のエラーメッセージを表示するにはどうすればいいですか?toastrに複数行のメッセージを表示する方法は?

私は

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

以下のように私のエラーメッセージをフォーマットしている。しかしtoasrtで、それは、単一の行に表示されます。 Dr.Stitchによって語られるようなHTMLとして文字列を使用してtoastrので、我々は新しい行のために追加する必要があり、

+1


を使用してみてください。 –

+1

私はtoastrがhtmlタグとして文字列を追加していると思います。 –

+1

[AngularJSのトーストメッセージに改行を入れる方法は?](http://stackoverflow.com/questions/31254459/how-to-put-a-line-break-into-a-toastr-メッセージインアングルジェス) – aribeiro

答えて

5

を助けてください:これは動作します

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

!お手伝いありがとう。

1

allowHtml:真

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 }); 
関連する問題