主頁 > 知識(shí)庫 > mybatis mysql delete in操作只能刪除第一條數(shù)據(jù)的方法

mybatis mysql delete in操作只能刪除第一條數(shù)據(jù)的方法

熱門標(biāo)簽:400電話辦理都選易號(hào)網(wǎng) 外呼系統(tǒng)服務(wù) 高德地圖標(biāo)注中心個(gè)人注冊(cè) 高德地圖標(biāo)注模式 外呼系統(tǒng)防封號(hào)違法嗎 如何在高德地圖標(biāo)注新地址 寶應(yīng)電信400電話辦理費(fèi)用 湘潭電銷機(jī)器人咨詢電話 電銷機(jī)器人針對(duì)的

出現(xiàn)的Bug

如圖,我開始復(fù)制delete語句和參數(shù)到數(shù)據(jù)庫執(zhí)行,刪除兩條數(shù)據(jù),但是后臺(tái)執(zhí)行確只刪除一條數(shù)據(jù),當(dāng)時(shí)表示一臉懵逼

 分析原因

分析原因

如圖,正確的參數(shù)傳值應(yīng)該是這樣的,聰明的同學(xué),應(yīng)該就知道哪里錯(cuò)了

解決問題

 解決問題

我就不貼開始的代碼了,直接貼解決bug的代碼

mybatis中的代碼

!-- 批量刪除-->
  delete id="deleteByIds" parameterType="int[]">
     ![CDATA[
    DELETE FROM p_customer
    WHERE customerId in
    ]]>
    foreach collection="array" item="arr" index="no" open="("
      separator="," close=")">
      #{arr}
    /foreach>
  /delete>

controller中的代碼

/**
   * 刪除和批量刪除
   */
  @RequestMapping(value = "/del", method = RequestMethod.POST, produces = { MediaType.APPLICATION_JSON_VALUE })
  public ResponseEntityPCustomerVo> delete(@RequestParam String customerId) throws Exception {
    //獲取批量刪除的id,去掉最后一個(gè)“,”
    customerId=customerId.substring(0,customerId.length()-1);
    String[] strarr=customerId.split(",");
    int[] arr=new int[strarr.length];
    for(int i=0;istrarr.length;i++){
      arr[i]=Integer.parseInt(strarr[i]);
    }
    pcustomerService.deletes(arr);
    return new ResponseEntity>(HttpStatus.OK);
  }

總結(jié)

以上所述是小編給大家介紹的mybatis mysql delete in操作只能刪除第一條數(shù)據(jù),希望對(duì)大家有所幫助,如果大家有任何疑問請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!

您可能感興趣的文章:
  • 解決mybatis一對(duì)多關(guān)聯(lián)查詢多條數(shù)據(jù)只顯示一條的問題
  • 解決mybatis plus 分頁查詢有條數(shù),total和pages都是零的問題
  • Oracle結(jié)合Mybatis實(shí)現(xiàn)取表TOP 10條數(shù)據(jù)
  • Mybatis查詢記錄條數(shù)的實(shí)例代碼
  • Mybatis RowBounds 限制查詢條數(shù)的實(shí)現(xiàn)代碼
  • Mybatis批量插入返回成功的數(shù)目實(shí)例

標(biāo)簽:馬鞍山 蘭州 賀州 黔南 南充 黃山 宿遷 佛山

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《mybatis mysql delete in操作只能刪除第一條數(shù)據(jù)的方法》,本文關(guān)鍵詞  mybatis,mysql,delete,操作,只能,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《mybatis mysql delete in操作只能刪除第一條數(shù)據(jù)的方法》相關(guān)的同類信息!
  • 本頁收集關(guān)于mybatis mysql delete in操作只能刪除第一條數(shù)據(jù)的方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章