通过Grails中的AJAX渲染模板

通过Grails中的AJAX渲染模板

我在操作中有以下代码

    render ( template: 'partial_list_template', model: [messageList: entries, totalFound: count, activeUILink: "all_mgs_link", termFreqs: null])

我在gsp页面中有以下代码
$j("#filterUpdate").click(function(event){

        var form = $j('#flags');



         new Ajax.Request('/tabulae/webForm/filter',
                {
                onSuccess:function(resp){

                               console.log(resp.responseText);
                                console.log($j('#filterResults'))
                                $j('#filterResults').remove()
                                $j('#filterResults').innerHTML(resp.responseText)
                            },
                            onError: function(resp) {
                                alert("Error:" + resp.toJSON());
                                return;
                            },
                            asynchronous:true,
                            evalScripts:true,
                            method:'GET',
                            parameters:form.serialize()

                });
      });

即使我在控制台日志中看到html输出。我在添加此内容的元素中看不到html输出。有什么想法吗?

最佳答案

尝试使用empty

$j('#filterResults').empty();
  $j('#filterResults').innerHTML(resp.responseText);

关于jquery - 通过Grails中的AJAX渲染模板,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8351727/

10-09 08:01