如何使用Thymeleaf在字符串段落中创建超链接(<a></a>)

时间:2015-04-01 06:40:04

标签: javascript jquery html5 spring thymeleaf

我有一段字符串,其中也包含URL字样, 喜欢:

  

&#34; Hello world, http://thymeleaf.org https://google.com   欢迎你。&#34;

生成PDF 时

,这两个网址字应该是超链接,其余文字应该是普通的。

1 个答案:

答案 0 :(得分:0)

@ModelAttribute("paragrah")
public String getParagraph()
{
    return "Hello world, <a href='http://thymeleaf.org'>http://thymeleaf.org</a> and <a href='https://google.com'>https://google.com</a> welcomes you.";
}

<强> HTML

<p th:text="${paragraph}"/>