在我的表单中,按钮触发am Action来调用REST服务
code_string = """"LAND1"= 'Park / Recreation / Open Space' AND "LAND2"= 'Park / Recreation / Open Space'"""
code_obj = compile(code_string,'<string>', 'exec')
返回XML片段
http://localhost:8080/inventory/search?nr=a-001
在动作编辑器:
中 源XPath表达式中的正确XPath表达式是什么,以将<item>
<nr>a-001</nr>
<name>Sample Name: a-001</name>
</item>
的内容映射到目标控制给出的字段?
答案 0 :(得分:1)
自己找到它。在这种情况下,操作编辑器中字段源XPath表达式的内容为/item/name
。
确保REST服务使用内容类型application/xml
回复XML。如果单击按钮时没有任何反应,请检查orbeon.log
是否有错误。