之前控制器方法獲得前臺(tái)傳來的值有三種方式:
站在用戶的角度思考問題,與客戶深入溝通,找到運(yùn)城網(wǎng)站設(shè)計(jì)與運(yùn)城網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗(yàn),讓設(shè)計(jì)與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個(gè)性化、用戶體驗(yàn)好的作品,建站類型包括:網(wǎng)站設(shè)計(jì)、成都網(wǎng)站制作、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣、域名與空間、網(wǎng)絡(luò)空間、企業(yè)郵箱。業(yè)務(wù)覆蓋運(yùn)城地區(qū)。
1.通過HttpServletRequest:
@RequestMapping(value="/index1") public String helloaction1(HttpServletRequest request){ System.out.println(request.getParameter("nnn")); //獲得前臺(tái)name為nnn的元素的值 return "index"; }
2.通過參數(shù)名獲得:
@RequestMapping(value="/index1") public String helloaction1(String nnn){ //這里名字要與前端元素名字一致才能獲得 System.out.println(nnn); return "index"; }
3.通過@RequestParam注解獲得:
@RequestMapping(value="/index") public String helloaction(@RequestParam(value="nnn",required=false)String nnn1, Model model){ //nnn要與前端一致,在此處可以理解為參數(shù)nnn1的別名 System.out.println(nnn1); model.addAttribute("hello", "這是用action傳過來的值:"+nnn1); return "index"; }
SpringMvc還能通過將vo作為參數(shù)獲得vo的各個(gè)屬性:
@RequestMapping(value="/index2") public String helloaction2(User user){ System.out.println(user.getAccount()); System.out.println(user.getPassword()); return "index"; }
使用對(duì)象進(jìn)行獲取數(shù)據(jù)的時(shí)候要注意,前端頁(yè)面的元素name屬性要與vo的各個(gè)屬性名字一致
以上這篇SpringMVC接收前臺(tái)傳遞過來的值的實(shí)例就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持創(chuàng)新互聯(lián)。