2016-07-08 42 views

回答

1

關於節點的子節點,如果它來自當前頁面,它是CurrentPage.Children(注意:我通常輸入爲(IPublishedContent)進行intellisense)。否則,您正在使用UmbracoHelper(Umbraco.TypedContent(nodeid))。

一旦你有了這個節點,子節點就可以通過node.Children進行訪問。

在關於JS的問題,如果你使用的剃鬚刀,你可以不喜歡在你的剃鬚刀如下:

// here is the JS 
<script> 
var myNewArray = new[]; 


@foreach(var child in node.Children) 
{ 
    var prop = child.GetPropertyValue("propName"); 
    @:myNewArray.push("@prop"); 
} 
</script> 
相關問題