我想构建一些自动完成组件,这些组件可以查询我的应用程序用户可以轻松使用的外部服务。为此,我想在组件中定义相对服务路径,并且希望绝对外部服务URL是可配置的。
我想在properties-local-prod.xml
中创建一个自定义配置值,例如<property as="xs:string" name="oxf.custom.service-ur">http://localhost</property>
,然后在自动完成的资源字段中使用它,例如:
<fr:autocomplete
ref="county"
labelref="@label"
resource="{$config('oxf.fr.custom.service-url')}/counties?search={$fr-search-value}"
max-results-displayed="4">
在Orbeon中这可能吗?