av一区二区在线观看_亚洲男人的天堂网站_日韩亚洲视频_在线成人免费_欧美日韩精品免费观看视频_久草视

您的位置:首頁技術(shù)文章
文章詳情頁

SpringBoot如何接收數(shù)組參數(shù)的方法

瀏覽:136日期:2023-07-28 10:32:28
1.創(chuàng)建一個表單實體類,將數(shù)組封裝到實體類中(Post提交)

表單類代碼:

@Datapublic class MyForm { private int[] ids;}

控制器代碼:

@Slf4j@RestController@RequestMapping('/info')public class InfoController { @PostMapping('/test') public String test(@RequestBody MyForm form){ log.info(Arrays.toString(form.getIds())); return 'success'; }}

前端代碼:

wx.request({ url:’http://localhost:8085/info/test’, data:{ ids:[1,2,3] }, method:’POST’, success:function(res){ console.log(res); } })2.通過方法內(nèi)參數(shù)傳遞,注意!!!SpringBoot方法內(nèi)接收數(shù)組時,數(shù)組在前端請求時必須將參數(shù)拼接在路徑里提交才可以接收到。(Get提交)

后端代碼:

@Slf4j@RestController@RequestMapping('/info')public class InfoController { @GetMapping('/test') public String test(int[] ids){ log.info(Arrays.toString(ids)); return 'success'; } }

小程序前端代碼:參數(shù)需拼接到路徑里,并且要以GET方式提交

var ids = [1, 2, 3, 4] wx.request({ url: ’http://localhost:8085/info/test?ids=’+ids, method: ’GET’, success: function(res){ console.log(res); } })

請求頭:

SpringBoot如何接收數(shù)組參數(shù)的方法

vue axios前端代碼(注意,數(shù)組需要調(diào)用encodeURIComponent進(jìn)行編碼):

test() { let ary = [1,2,3] let params = { ids:encodeURIComponent(ary),}; that.$http.get('http://localhost:8085/info/test',{params}).then(res=>{ if(res.code==0){ that.$message.success(’查詢成功’) }else { that.$message.error(res.message||’查詢失敗’) } }).catch(error=>{ that.$message.error(’查詢失敗’) }) }

注意!!!請求路徑中的參數(shù)必須跟上圖所示的一樣才能被接收到。

到此這篇關(guān)于SpringBoot如何接收數(shù)組參數(shù)的方法的文章就介紹到這了,更多相關(guān)SpringBoot接收數(shù)組參數(shù)內(nèi)容請搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持好吧啦網(wǎng)!

標(biāo)簽: Spring
相關(guān)文章:
主站蜘蛛池模板: aaaa级片| 六月婷婷综合 | 色婷婷综合在线 | 亚洲国产精品久久久久久久 | 中文一区二区 | 国产综合久久 | 99久久精品国产毛片 | 亚洲精品在线免费 | 国产精品久久久久久中文字 | 国产精品综合 | 福利在线观看 | 91白浆| 成人福利在线 | 97中文字幕| 国产又黄又爽 | 久久久久久久免费视频 | 亚洲精品成人 | 日韩国产精品一区二区 | 欧美日韩一区二区在线 | 一级大片免费看 | 亚洲天堂免费视频 | 国产精品区二区三区日本 | 国产一区二区不卡 | 三级黄色片网站 | 蜜桃精品噜噜噜成人av | 国产一区二区在线看 | 狠狠躁夜夜躁人爽 | 黄色1级视频 | 综合av网 | 99视频在线观看免费 | 激情网站在线观看 | 久色成人 | 免费一级黄色 | 伊人av网| 亚洲精品在线免费 | av片网站| 日韩在线观看一区 | 亚洲第一毛片 | 天天色影院 | 欧美激情国产精品 | 97精品国产 |