如何比较XML中MyBatis 3中的字符串<if test =“”>忽略大小写

时间:2016-12-14 08:52:10

标签: xml mybatis

作为this post

<if test="sortBy == 'col1' or sortBy == 'COL1' ">
   ...
</if>

只比较逐个字符串。有没有像MyBatis XML Mapper中的equalsIgnoreCase一样的方法?

不可思议的人可以

UICollectionView

1 个答案:

答案 0 :(得分:0)

Java代码可以工作,只需用简单的引号更改 test 属性双引号,或者转义它们:

<if test='"col1".equalsIgnoreCase(sortBy)'> 
 ...
</if>