格式从数据库到Laravel的格式html文本与刀片

发布于 2025-01-22 14:44:15 字数 444 浏览 0 评论 0原文

在数据库中,一个字段用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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

江心雾 2025-01-29 14:44:15

要显示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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文