将部件渲染到 Orchard CMS 中的不同区域
我是 Orchard CMS 的新手,想知道是否可以将页面内容类型中的内容部分设置呈现到不同的区域而不是内容本身。
例如,我设置了一个 TextField,其中包含要用作页面标题的图像 url,但放置在与内容本身不同的区域中。
有人能指出我正确的方向吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您的意思是将部分发送到不在顶级内容区域内的区域,您可以尝试以下方法:http://weblogs.asp.net/bleroy/archive/2011/03/26/dispatching-orchard-shapes-to-任意-zones.aspx
我们还在考虑对 Orchard 未来版本的放置进行各种扩展。
If you mean sending parts to a zone that is not inside the top-level Content zone, you can try this approach: http://weblogs.asp.net/bleroy/archive/2011/03/26/dispatching-orchard-shapes-to-arbitrary-zones.aspx
We are also considering various extensions to placement for future versions of Orchard.
从 Orchard 1.5 开始,您可以使用主题的placement.info 文件将部件注入任何区域。这使用 区域放置。
下面是一个示例,当博客文章在详细视图中显示时,会将博客文章的标签放置在 AssideFirst 区域中。
区域名称后面的数字是位置。较小的数字将使其显示在该区域中其他小部件的上方,而较大的数字将使其显示在下方。
As of Orchard 1.5 you can inject a part into any zone using your theme's placement.info file. This uses zone placement.
Here is an example that would place blog post's tags in the AssideFirst zone when the blog post was being shown in detail view.
The number after the zone name is the position. A smaller number will make it appear above other widgets in this zone and a larger number will make it appear lower down.
您可以通过 Placement.info 文件。它是一个非常简单但功能强大的工具,允许您更改渲染区域、零件的顺序等。
您能详细说明一下您的场景吗?
You can customize content parts' display properties via Placement.info file. It's a very simple, yet powerful tool that allows you to change rendering zones, parts' ordering and such.
Could you please elaborate more about your scenario?