我是靠谱客的博主 多情羊,这篇文章主要介绍Freemarker获取Map对象中的List类型的值时报错,现在分享给大家,希望可以做个参考。

今天遇到这么一个问题,我写个文章mark下!!

比如有如下Map类型的数据:

{
    "name":"hello",
    "poiCodes":[123456,789]
}

在Freemarker模板中这么获取的话:

"poiCodes": <#if inputData.poiCodes?? && (inputData.poiCodes?size > 0)>${inputData.poiCodes}<#else>[]</#if>

会报如下的错误:

 "freemarker.core.NonStringException: For "${...}" content: Expected a string or something automatically convertible to string (number, date or boolean), but this has evaluated to a sequence (wrapper: f.t.SimpleSequence)

原因是:Freemarker会将通过key获取的value默认转为string,因此该value是List类型,所以会报错,需要转换处理,步骤比较繁琐,如下:

"poiCodes": <#if inputData.poiCodes?? && (inputData.poiCodes?size > 0)>
                        [
                            <#list inputData.poiCodes as poiCode>
                                ${poiCode?c}
                                <#if poiCode_has_next>
                                    ,
                                </#if>
                            </#list>
                        ]
            <#else>[]</#if>


最后

以上就是多情羊最近收集整理的关于Freemarker获取Map对象中的List类型的值时报错的全部内容,更多相关Freemarker获取Map对象中内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(67)

评论列表共有 0 条评论

立即
投稿
返回
顶部