开发者

what does error mean and how to fix it

开发者 https://www.devze.com 2023-03-17 06:34 出处:网络
<currentversion vob=\"<vobname>\" label=\"<labal>\"/> <export vob=\"<vobname>\" bra开发者_运维百科nch=\"<branch>\" label=\"<label>\"/>
<currentversion vob="<vobname>" label="<labal>"/>

<export vob="<vobname>" bra开发者_运维百科nch="<branch>" label="<label>"/>

error :

The value of attribute "v" associated with an element type "currentversion" must not contain the '<' character.


Replace < with &lt; (lt=lower than) and > with &gt; (gt = greater than) if it is not part of a tag...

<currentversion vob="&lt;vobname&gt;" label="&lt;labal&gt;"/>


The error message means exactly what it says, and you fix it by ensuring that all "&" and "<" characters in your data are escaped as "&amp;" and "&lt;" respectively.

0

精彩评论

暂无评论...
验证码 换一张
取 消