MyBatis中的条件判断单引号双引号的使用时间:2023-03-08 19:33:49对于字符串判断, <if test="aIn != 'A'" >会出现问题,系统会试图把'A'转成数字,改为 <if test='aIn != "A"' >;