如何定义具有嵌套值的请求表示形式参数?
<param name="foo[bar]" required="true" type="xsd:string" style="query" default="baz">
“字符串值'foo [bar]'中的结果与xs的模式不匹配:NMTOKEN”
答案 0 :(得分:0)
<request>
<representation>
<param name="foo_bar" apigee:paramName="foo[bar]" required="true" type="xsd:string" style="query" default="baz">
</representation>
</request>
答案 1 :(得分:0)
为了在apigee:paramName中使用方括号,你应该像这样使用数字实体:
apigee:paramName="foo[bar]"
否则括号可能无法正确显示。