Freemaker在表格中遍历数据

Controller层如下所示:

 @RequestMapping(value = "/test", method = RequestMethod.GET)
    public String test(Model model) {
        List cityList = cityService.findAllCity();
        model.addAttribute("cityList",cityList);
        return "test";
    }

reemaker如下所示:


    <#list cityList! as city>
        
城市名 省编码 描述
${city.cityName!} ${city.provinceId!} ${city.description!}

注意:freemaker在对象后面添加 ! ,表示允许该对象为空。也可以不加!,直接写对象。

效果如下:

                                                        Freemaker在表格中遍历数据_第1张图片

你可能感兴趣的:(前端)