格式从数据库到Laravel的格式html文本与刀片
在数据库中,一个字段用HTML文本格式保存为例如:
<p>Esto es un <strong>mensaje </strong>de prueba</p>
当我在屏幕上以刀片显示屏幕时,标签出现并且不格式化。
有人知道如何使其格式化吗?
我已经尝试了此
<p>{{$notification->message}}</p>
{{$notification->message}}
节目:
<p>Esto es un <strong>mensaje </strong>de prueba</p>
但是我希望
:
In the database a field is saved with html text formatted as for example this:
<p>Esto es un <strong>mensaje </strong>de prueba</p>
When I show it on the screen in blade, the tags appear and it does not format it.
Does anyone know how to make it format?
I have tried this
<p>{{$notification->message}}</p>
{{$notification->message}}
Shows:
<p>Esto es un <strong>mensaje </strong>de prueba</p>
but I would like this:
Esto es un mensaje de prueba
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要显示Unescaped数据,请使用
{!! $$ Notification-消息!!}
请参阅 https://laravel.com/docs/9.x/blade#displaying-unescaped-data
To show unescaped data, use
{!! $$notification->message !!}
Refer to https://laravel.com/docs/9.x/blade#displaying-unescaped-data