3

私は次のXMLを持っています:

<stories>
    <story id="1234">
        <title>This is a title</title>
        <date>1/1/1980</date>
        <article>
            <![CDATA[<p>This is an article.</p>]]>
        </article>
    </story>
</stories>

そして、C#の次のLinq to XMLコード:

@{
    XDocument xmlDoc = XDocument.Load("foo.xml");

    var stories = from story in xmlDoc.Descendants("stories")
                        .Descendants("story")
                        .OrderByDescending(s => (string)s.Attribute("id"))
        select new
        {
            title = story.Element("title").Value,
            date = story.Element("date").Value,
            article = story.Element("article").Value,
        };

    foreach (var story in stories)
    {

        <text><div class="news_item">
            <span class="title">@story.title</span>
            <span class="date">@story.date</span>
            <div class="story">@story.article</div>
        </div></text>

    }
}

レンダリングされたHTMLは、次のようにブラウザに出力されます。

<div class="news_item">
    <span class="title">This is a title</span>
    <span class="date">1/1/1980</span>
    <div class="story">&lt;p&gt;This is an article.&lt;/p&gt;</div>
</div>

<p>タグをエンコードせずにHTMLとしてブラウザにレンダリングしたい。どうすればこれを達成できますか?

4

1 に答える 1

4

Razorはデフォルトで値をエンコードします。これを回避するには、Html.Rawヘルパーを使用する必要があります(ASP.NET MVC RazorビューのHtml.Raw()

 <div class="story">@Html.Raw(story.article)</div>
于 2012-11-16T01:45:00.893 に答える