Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我只想知道如何获取 umbraco 5.. 中 4.7 版 node.GetProperty("PropertyAlias").value 中属性的值
现在。我如何在 5 中使用它?
谢谢..
如果您正在编辑视图,并且想要显示当前页面内容中的字段,则可以动态执行此操作:
@CurrentPage.PropertyAlias
如果您正在编辑视图,但当前页面不代表模型,或者您需要更高级的功能,您可以使用 Field 方法检索属性:
@Umbraco.Field(Model, "PropertyAlias")
最后,如果您在代码中选择了内容节点:
MyContent.Field<string>("PropertyAlias")