Including a URL with query string in an XML document

前端 未结 3 2068
清酒与你
清酒与你 2021-02-20 11:41

So I have this XML doc:



    
        http://www.mysite.com/page?id=1         


        
3条回答
  •  無奈伤痛
    2021-02-20 12:13

    As you provide it, the XML is well formed. You don't have anything to escape in it. Maybe you have encoding problems in your source file. For information, the 2 characters you must escape in XML are :

    & in &
    < in <
    

    Characters you may escape in attributes values (depending on the syntax you use for attributes : attr='value' or attr="value") :

    " in "
    ' in '
    

    Depending on the context, the last character that can be escaped :

    > in >
    

提交回复
热议问题