我正在使用API Manager 2.0来公开底层DSS资源。
如何将/
作为路径参数值的一部分传递。
示例:我需要访问REST
date of birth
资源人员,26/01/2017
<endpoint>/person/26/01/2017
%2F
我也尝试使用/
代替<endpoint>/person/26%2F01%F2017
/
。在这种情况下,它需要整个&lt; 26%2F01%的F2017&#39;作为一个字符串并传递给下一个级别,它与任何日期都不匹配,并且不返回任何记录。
这仅适用于API Manager。 DSS允许我使用{
path: ':lang',
component: MainComponent
children: [
{path: 'page1', component, children},
{path: 'page2', component, children},
...
]
},
进行访问而无需任何编码。
由于