これは私のテストコンポーネントですXBLコンポーネントの子要素を読み、xpathを構築する
<xxforms:variable name="instance" select="xxforms:evaluate-avt='{/*/fr:constraint/@instance}'" />
<fr:constraint instance="myinstance" xpath="item/@id" />
</fr:mycomponent>
私はXBLのインスタンス属性の値を読み取る必要があります。私は次のようにしています。
<xsl:value-of select="./fr:constraint/@instance" />
または <xxforms:variable name="instance" select="xxforms:evaluate-avt='{/*/fr:constraint/@instance}'" />
私は助けが必要な値を読み取るために、インスタンス名とxpathを連結する必要があります。 <xxforms:variable name="instance" select="concat('instance(''', xxforms:evaluate-avt='{/*/fr:constraint/@instance}'", ''')' />
私は例と同じ方法でxpathを読み込み、上記の変数と連結することができます。
<xxforms:variable name="xpath" select="xxforms:evaluate-avt='{/*/fr:constraint/@xpath}'" />
<xxforms:variable name="nodeset" select="concat($instance, '/', $xpath)" />
<xforms:repeat nodeset="$nodeset">
<xforms:repeat/>
xpathを作成して繰り返しで使用するために文字列を連結する問題がどこにあるのか。何か案は?
私はxxformsを試してみました:($のノードセット)を評価し、xxforms:あまりにも(CONCAT($のノードセット、 '/'、 '$のXPathを'))を評価。 – BinnyG