您好,登錄后才能下訂單哦!
本文小編為大家詳細(xì)介紹“mybatis中的if test判斷入?yún)⒅祮栴}怎么解決”,內(nèi)容詳細(xì),步驟清晰,細(xì)節(jié)處理妥當(dāng),希望這篇“mybatis中的if test判斷入?yún)⒅祮栴}怎么解決”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學(xué)習(xí)新知識吧。
<if test=' requisition != null and requisition == "Y" '> AND 表字段 = #{requisition} </if>
<if test=" requisition != null and requisition == 'Y'.toString() "> AND 表字段 = #{requisition} </if>
在實(shí)現(xiàn)搜索功能時(shí)碰到的錯(cuò)誤,很多時(shí)候我們會在數(shù)據(jù)庫中使用一個(gè)字段來作為狀態(tài)保存,如:0=男,1=女;0=禁止,1=啟用等。
無論我選擇停用、還是啟用,都將整個(gè)表格的數(shù)據(jù)顯示出來,沒有起到篩選的作用。
通過排除,找到了導(dǎo)致問題的代碼:
<select id="queryAllByLimit" resultMap="SystemMenuMap"> select id, pid, title, icon, href, sort, status from system_menu <where> <if test="systemMenu.status != null and systemMenu.status != '' "> and status = #{systemMenu.status} </if> </where> </select>
改為:
<select id="queryAllByLimit" resultMap="SystemMenuMap"> select id, pid, title, icon, href, sort, status from system_menu <where> <if test="systemMenu.status != null"> and status = #{systemMenu.status} </if> </where> </select>
原因:
<if test="systemMenu.status != null and systemMenu.status != '' ">
只對判斷String類型的字符串時(shí)起作用,由于status是Integer類型,判斷條件不成立,沒起到作用。如:當(dāng)傳入的值是1時(shí),’1’會被解析成字符。
讀到這里,這篇“mybatis中的if test判斷入?yún)⒅祮栴}怎么解決”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識點(diǎn)還需要大家自己動手實(shí)踐使用過才能領(lǐng)會,如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。