获取组件中的配置值

问题描述 投票:0回答:1

我想构建几个自动完成组件来查询我的应用程序的用户可以轻松使用的外部服务。为此,我想在组件中定义相对服务路径,并且我希望绝对外部服务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有可能这样吗?

orbeon xforms
1个回答
2
投票

我认为xxf:property() function完全符合您的要求。

© www.soinside.com 2019 - 2024. All rights reserved.