MVC 在页面上嵌入数据库中的链接

发布于 2024-12-09 19:12:21 字数 504 浏览 1 评论 0原文

我正在尝试制作一个简单的类似博客的页面。我现在的主要问题是我希望能够嵌入 YouTube 视频等。当帖子从数据库加载时,会显示链接而不是嵌入链接。

下面是我的partialView,它显示我的帖子。

    @foreach (var item in ViewBag.Posts)
{
    <div class="posts">
        <p>
            <b>@item.Topic</b></p>
        <p>
            <@item.Text</p>
        <p>
            @item.PostDate - @item.Alias</p>
    </div>
    <hr />
}

item.Text 是嵌入链接所在的位置。有什么办法可以解决这个问题吗?

预先感谢。

I'm trying to make a simple blog like page. And my main problem right now is that I want to be able to embed for example a youtube video. When the post loads from the database the link is displayed instead of being embedded.

Below is my partialView which displays my posts.

    @foreach (var item in ViewBag.Posts)
{
    <div class="posts">
        <p>
            <b>@item.Topic</b></p>
        <p>
            <@item.Text</p>
        <p>
            @item.PostDate - @item.Alias</p>
    </div>
    <hr />
}

the item.Text is where the embedded link is held. Is there any way to solve this?

Thanks beforehand.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

绻影浮沉 2024-12-16 19:12:21

您可以使用 Html 助手来完成此操作:

@Html.Raw(item.Text)

You can do this with the Html helper:

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