Freemarker判断对象是否为空的用法

注:https://blog.csdn.net/elladu/article/details/80393814

freemark判断对象的属性

<#if (${blog.belongid==1 })>
    red

以上不对,应该是

<#if (blog.belongid==1)>
    red

参考:https://blog.csdn.net/qq_21870555/article/details/80995906

你可能感兴趣的:(freemark)