Mybatis的XML中数字不为空的判断

发现1可以进去0进不去

    <if test="status != null and status != ''">
        and c.status = #{status}
    </if>

后来修改为

    <if test="status != null">
        and c.status = #{status}
    </if>

则0和1都可以

posted @ 2020-11-24 15:11  天宇轩-王  阅读(489)  评论(0编辑  收藏  举报