Piranha CMS 如何在 parent 页面上显示所有 child 页面的标题?
Piranha CMS How do I display the title of all child pages on the parent page?
假设我有这样的页面结构
- Books
- Lord of the rings
- Harry potter
- Mice and Men
现在我想在书页上显示所有 child 页的标题。
我发现了一个与此相关的问题:
但是当尝试使用 api 服务时,我得到
Unable to resolve service for type 'Piranha.Api'
我的配置中有 services.AddPiranha();
,但我没有看到任何其他更适合添加的服务。
我是运行 dot net core 2.2 和 Piranha 7.0.3
有人有什么建议吗?
您应该注入的类型是 Piranha.IApi,class Piranha.Api 是它的默认实现!
此致
假设我有这样的页面结构
- Books
- Lord of the rings
- Harry potter
- Mice and Men
现在我想在书页上显示所有 child 页的标题。
我发现了一个与此相关的问题:
但是当尝试使用 api 服务时,我得到
Unable to resolve service for type 'Piranha.Api'
我的配置中有 services.AddPiranha();
,但我没有看到任何其他更适合添加的服务。
我是运行 dot net core 2.2 和 Piranha 7.0.3
有人有什么建议吗?
您应该注入的类型是 Piranha.IApi,class Piranha.Api 是它的默认实现!
此致