1

我有一个有几个树枝的模板。模板的一部分以这种方式加载:

{{Render (controller ('BlogBundle: Post: list', {'limit': 2})}}

但是使用 jquery 和 jsroutingbundle 内联编辑这部分树枝。如何重新加载树枝的那部分?

4

1 回答 1

1
<div id="divId"> 
    {{Render (controller ('BlogBundle: Post: list', {'limit': 2})}} 
</div>

<button onClick="refreshFunctionName()"> Button Refresh Text </div>

<script>

    function refreshFunctionName()
    {
        $.ajax({
            type: "GET",
            url: "{{ path('theRoutingToBlogBundlePostListAction') }}",
            data: '',
            cache: false,
            success: function(data){
                $('#divId').html(data);
            },
            error: function(){},
            complete: function(){}
        });
    }

</script>
于 2013-09-05T07:25:47.940 回答