I m building a webapplication with eXist as backend. I wanna load a new ressource with the xf:load element.
我所做的就是这个:
<xf:trigger>
<xf:label>Trigger</xf:label>
<xf:action ev:event="DOMActivate">
<xf:load>
<xf:resource value="concat( start.xql?floor={$floor}&room={$room} , )" />
</xf:load>
</xf:action>
</xf:trigger>
但当我按下触发器时,这个url是上膛的:
start.xql?floor=0&room=E.01
很明显,这不是我所期望的。当我无法逃脱安珀斯时,我犯了一个错误:
Invalid character in entity name (=) or missing ;
So, what is the correct way to pass multiple parameters via the xf:load element? Can I workaround this problem with the ampersand or am I just missing something?
感谢任何帮助
Kind regards Christian