您好,登錄后才能下訂單哦!
下面的后臺的代碼:目的的查詢數(shù)據(jù)庫中的所有省的列表,然后轉(zhuǎn)化為json傳到前端頁面
@Controller public class DistrictController { @Resource private ProvinceService provinceServiceImp; @Resource private CityService cityServiceImp; @Resource private TourSpotService tourSpotServiceImp; /** * 獲取所有省信息 * @param response * @return * @throws IOException */ @RequestMapping("/getAllProvince") public String getAllProvince(HttpServletResponse response) throws IOException{ response.setContentType("text/html;charset=utf-8");//設(shè)置響應(yīng)的編碼格式,不然會出現(xiàn)中文亂碼現(xiàn)象 PrintWriter out = response.getWriter(); //get List<Province> provincelist = provinceServiceImp.findAllProvince(); JSONArray jsonArray = JSONArray.fromObject(provincelist); out.write(jsonArray.toString()); out.flush(); out.close(); return null; }
以下是前端jQuery內(nèi)容:
$.get("/visualization-tour/getAllProvince", function(result) { var json = eval("("+result+")"); // 解析 var tt = "<option selected class='proInfo' value=1>~請選擇省~</option>"; $.each(json, function(index) { // 循環(huán)獲取數(shù)據(jù) var proId = json[index].proId; var proName = json[index].proName; tt += "<option value="+proId+">"+proName+"</option>" ; }); $("#province").html(tt); });
注意事項(xiàng),SpringMVC的控制器會是你的一些靜態(tài)資源(js、html、css)不能加載,需要修改SpringMVC的配置文件,添加以下內(nèi)容:
<!-- 靜態(tài)資源訪問 --> <mvc:resources location="/img/" mapping="/img/**" /> <mvc:resources location="/js/" mapping="/js/**" /> <mvc:resources location="/css/" mapping="/css/**" /> <mvc:resources location="/page/" mapping="/page/**" />
其中l(wèi)ocation 是指你的靜態(tài)資源的路徑
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。
免責(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)容。