thymeleaf sax解析器和utm_source

时间:2014-11-04 09:13:51

标签: saxparser thymeleaf

使用" utm_source"处理带百里香叶的模板;即使在href属性下也会导致失败。

org.xml.sax.SAXParseException; lineNumber: 315; columnNumber: 126; The reference to entity "utm_source" must end with the ';' delimiter.

有人知道解决方法吗?因为如果我转换为HTML代码就好了,那么因为有&&&在一起。

此外,这可能与SAX Parser相关,而不是百里香。

2 个答案:

答案 0 :(得分:0)

逃避&作品。例如:

<a href="www.example.com/?utm_abc=xyz&amp;utm_source=def"></a>

答案 1 :(得分:0)

您的链接参数应如下所示:

<a th:href="@{${baseUrl}(param1=value1,param2=value2)}">

来源: http://www.thymeleaf.org/doc/articles/standardurlsyntax.html