freemarker遍历list数据不显示问题

ftl中加载list返回的数据:
后端代码:

//表格数据
        List mktTableList = exportWordMapper.queryStaticList("2");
        context.put("mktTableList ",mktTableList);

前端ftl遍历代码:

<#list mktTableList as item>
..省略部分样式代码..
                            :r>
                                    :t>${item.userId}</w:t>
                          </w:r>
...

表格的样式是这样的

img

中间的数据一直加载不出来,求解是为什么呢

1.检查mktTableList有没有值,可以打印下mktTableList的length
2.检查后台有没有ftl模板报错或F12看下源代码有没有错误的模板提示