xforms 中多个元素的串联

发布于 2024-10-24 04:04:56 字数 1271 浏览 1 评论 0原文

我有以下数据实例。

<xhtml:html xmlns:xhtml="http://www.w3.org/1999/xhtml"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:xxforms="http://orbeon.org/oxf/xml/xforms"
xmlns:exforms="http://www.exforms.org/exf/1-0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<xhtml:head>
    <xforms:instance id="instanceData">
        <form xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
            xmlns:xsd="http://www.w3.org/2001/XMLSchema">
            <fruits>
                <fruit>
                    <fruit-name>Mango</fruit-name>
                </fruit>
                <fruit>
                    <fruit-name>Apple</fruit-name>
                </fruit>
                <fruit>
                    <fruit-name>Banana</fruit-name>
                </fruit>
            </fruits>
            <all-fruits></all-fruits>
        </form>
    </xforms:instance>
</xhtml:head>
</xhtml:html>

我想在 all-fruits 标签中包含所有水果名称,如下所示,

<all-fruits>Mango Apple Banana</all-fruits>

请建议一些方法来实现相同的目的。当尝试使用 xxforms:iterate 和 concat 时,它对我不起作用。

I have the following data instance.

<xhtml:html xmlns:xhtml="http://www.w3.org/1999/xhtml"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:xxforms="http://orbeon.org/oxf/xml/xforms"
xmlns:exforms="http://www.exforms.org/exf/1-0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<xhtml:head>
    <xforms:instance id="instanceData">
        <form xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
            xmlns:xsd="http://www.w3.org/2001/XMLSchema">
            <fruits>
                <fruit>
                    <fruit-name>Mango</fruit-name>
                </fruit>
                <fruit>
                    <fruit-name>Apple</fruit-name>
                </fruit>
                <fruit>
                    <fruit-name>Banana</fruit-name>
                </fruit>
            </fruits>
            <all-fruits></all-fruits>
        </form>
    </xforms:instance>
</xhtml:head>
</xhtml:html>

i would like to have all the fruit names in all-fruits tag as below

<all-fruits>Mango Apple Banana</all-fruits>

Please suggest some way to achieve the same. It didn't work for me when tried with xxforms:iterate and concat.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

酷到爆炸 2024-10-31 04:04:56

以下是解决问题的方法:

<xforms:bind nodeset="all-fruits"
             calculate="string-join(../fruits/fruit/fruit-name, ' ')"/>

这是完整的源代码,因此您可以运行它:

<xhtml:html xmlns:xhtml="http://www.w3.org/1999/xhtml"
            xmlns:xs="http://www.w3.org/2001/XMLSchema"
            xmlns:xxforms="http://orbeon.org/oxf/xml/xforms"
            xmlns:exforms="http://www.exforms.org/exf/1-0"
            xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
            xmlns:xforms="http://www.w3.org/2002/xforms">
    <xhtml:head>
        <xforms:model>
            <xforms:instance id="instanceData">
                <form xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                      xmlns:xsd="http://www.w3.org/2001/XMLSchema">
                    <fruits>
                        <fruit>
                            <fruit-name>Mango</fruit-name>
                        </fruit>
                        <fruit>
                            <fruit-name>Apple</fruit-name>
                        </fruit>
                        <fruit>
                            <fruit-name>Banana</fruit-name>
                        </fruit>
                    </fruits>
                    <all-fruits></all-fruits>
                </form>
            </xforms:instance>
            <xforms:bind nodeset="all-fruits" calculate="string-join(../fruits/fruit/fruit-name, ' ')"/>
        </xforms:model>
    </xhtml:head>
    <xhtml:body/>
</xhtml:html>

The following does the trick:

<xforms:bind nodeset="all-fruits"
             calculate="string-join(../fruits/fruit/fruit-name, ' ')"/>

And here is the full source so you can run it:

<xhtml:html xmlns:xhtml="http://www.w3.org/1999/xhtml"
            xmlns:xs="http://www.w3.org/2001/XMLSchema"
            xmlns:xxforms="http://orbeon.org/oxf/xml/xforms"
            xmlns:exforms="http://www.exforms.org/exf/1-0"
            xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
            xmlns:xforms="http://www.w3.org/2002/xforms">
    <xhtml:head>
        <xforms:model>
            <xforms:instance id="instanceData">
                <form xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                      xmlns:xsd="http://www.w3.org/2001/XMLSchema">
                    <fruits>
                        <fruit>
                            <fruit-name>Mango</fruit-name>
                        </fruit>
                        <fruit>
                            <fruit-name>Apple</fruit-name>
                        </fruit>
                        <fruit>
                            <fruit-name>Banana</fruit-name>
                        </fruit>
                    </fruits>
                    <all-fruits></all-fruits>
                </form>
            </xforms:instance>
            <xforms:bind nodeset="all-fruits" calculate="string-join(../fruits/fruit/fruit-name, ' ')"/>
        </xforms:model>
    </xhtml:head>
    <xhtml:body/>
</xhtml:html>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文