尝试在带有导航的概览页面卡片上创建 POC。在使用 Northwind OData 服务设置卡片和注释时,我遵循了一些教程。
我想通过点击卡片导航到另一个应用程序。文档说这是使用intent-based navigation
. 我试图导航到的这个应用程序在 Fiori Launchpad 中注册,语义对象为“Northwind”,动作为“Display”
我在 manifest.json 中设置了员工卡,它可以很好地显示记录。
annotationPath
但是,当我在and中添加导航参数时identificationAnnotationPath
,数据不显示,导航不起作用。
Manifest.json 卡片片段
"card00": {
"model": "NorthwindModel",
"template": "sap.ovp.cards.table",
"settings": {
"title": "{{card00_title}}",
"category": "{{card00_category}}",
"subTitle": "{{card00_subTitle}}",
"entitySet": "Employees",
"annotationPath": "com.sap.vocabularies.UI.v1.LineItem#Northwind-Display",
"identificationAnnotationPath": "com.sap.vocabularies.UI.v1.Identification#Northwind-Display"
}
}
我也试过省略这个动作,但我得到了相同的结果。
我做错了什么,从概览页面卡片导航到应用程序的正确方法是什么?我找不到有关此主题的任何资源。