2016-05-12 68 views
1

嘗試驗證字符串時出現問題。這個字符串應該是一個URL,所以它可以有參數。當我添加了 「&」 加1個多參數,我收到此錯誤:xsd使用參數驗證url

Not well formed: The reference to entity "mysecondip" must end with the ';' delimiter.

這是XML:

<url>http://www.google.com?myip=192.168.0.1&mysecondip=192.168.0.2</url> 

和XSD

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> 
    <xs:element name="url" type="xs:string"/> 
</xs:schema> 

Sample

回答