MyBatis中的条件判断单引号双引号的使用2023-08-04 22:50:16对于字符串判断, <if test="aIn != 'A'" >会出现问题,系统会试图把'A'转成数字,改为 <if test='aIn != "A"' >;上一篇:JsonException: Max allowed object depth reached while trying to export from type System.Single下一篇:C语言中,while()语句中使用赋值语句