我正在使用freemarker为新闻生成div
<#if news?has_content>
<#list news as n>
<div class="post-block">
<h3>${n.getAuthor().name}
<p>${n.getText()}</p>
</div>
</#list>
</#if>
我也有ajax请求来获取事件或其他新闻。它的结构是一样的。
$.ajax({
'url': '/get_news',
'data': {
'filter': some_value
},
'type': 'get',
'success': function (json) {
???
}
})
};
如何将ajax响应中的json数据添加到freemarker生成的div中?是否可以将数据直接放到freemarker列表并显示更新列表?