在 Datapower 上下文中设置动态变量
我的要求是在 for 循环中将一些动态变量设置为 datapower 上下文,例如:
<dp:set-variable name="'var://context/txn-info/appErrorInd[$i+1]'"
value="'yes'" />
变量 $i 将不断变化。上面的代码不起作用。有人可以给我一个解决方案吗?
My requirement is to set some dynamic variables in a for loop to the datapower context something like :
<dp:set-variable name="'var://context/txn-info/appErrorInd[$i+1]'"
value="'yes'" />
The variable $i will keep on changing. The above code isn't working. Can somebody give me a solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用:
以上是对所提供代码的机械修正。它很可能包含另一个更微妙的错误。要更正此错误,请使用:
说明:
使用AVT。
[]
运算符的优先级高于//
伪运算符。要覆盖这一点,需要显式使用括号。Use:
The above is a mechanical correction of the provided code. Most likely it contains another, more subtle error. To correct this error, too, use:
Explanation:
Use of AVT.
The
[]
operator has a higher precedence than the//
pseudo-operator. To override this one needs to use explicitly brackets.