「info」のドキュメントタイプがあり、カスタムプロパティもいくつかあります。
infoTitle infoSummary infoBody
伝票タイプ"info"の伝票をすべて取得してデータを出力したい。
ありがとう
この単純な剃刀マクロは、あなたが望むものを達成するはずです:
@{
// Get root node:
var root = Model.AncestorOrSelf();
// Get all descendants, filter by type:
var nodes = root.Descendants("info");
// Loop through the filtered nodes, displaying the properties:
<ul>
@foreach (var node in nodes)
{
<li>
<h2>@node.infoTitle</h2>
<div>@node.infoSummary</div>
<div>@node.infoBody</div>
</li>
}
</ul>
}