美文网首页
if...else... 在 mybatis 中的使用

if...else... 在 mybatis 中的使用

作者: 平面小狮子 | 来源:发表于2019-04-16 15:33 被阅读0次

mybatis 中没有 if...else...的写法,mybaits 中没有else要用chose when otherwise 代替

代码格式:

<choose>

    <when test="">

        //...

    </when>

    <otherwise>

        //...

    </otherwise>

</choose>

相关文章

网友评论

      本文标题:if...else... 在 mybatis 中的使用

      本文链接:https://www.haomeiwen.com/subject/zdmbwqtx.html