开发者

what does error mean and how to fix it

<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

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜