我正在使用Thymeleaf处理html模板,我了解了如何从控制器添加内联字符串,但是现在我想将html代码片段添加到页面中。
例如,让我在我的Java应用程序中拥有它:
String n="<span><i class=\"icon-leaf\"></i>"+str+"</span> <a href=\"\"></a>\n";
final WebContext ctx = new WebContext(request, response,
servletContext, request.getLocale());
ctx.setVariable("n",n);
我需要在html页面中写些什么,以便将其替换为“ n”变量并作为html代码处理,而不是将其编码为文本?