码迷,mamicode.com
首页 > 其他好文 > 详细

前后台页面跳转及参数传递

时间:2016-11-24 15:26:02      阅读:584      评论:0      收藏:0      [点我收藏+]

标签:app   page   service   return   string   res   ice   single   页面跳转   

<li data-options="attributes:{‘url‘:‘item-list‘}">查询商品</li>查询商品点击会得到item-list,然后传给pageController中{page},正好是string page参数的值最后return page,即item-list,到视图解析器找item-list的页面,实现跳转,读取数据时与前端的相应页面对应起来即可

找页面
@RequestMapping("/{page}")
public String showpage(@PathVariable String page) {
return page;
}
传参数,和item-list里面的URL对应起来
data-options="singleSelect:false,collapsible:true,pagination:true,url:‘/item/list‘,method:‘get‘,pageSize:30,toolbar:toolbar">
@RequestMapping(value = "/item/list", produces = MediaType.APPLICATION_JSON_VALUE + ";charset=utf-8")
@ResponseBody
public EUDataGridResult getItemList(Integer page, Integer rows) {
EUDataGridResult result = itemService.getItemList(page, rows);
return result;
}

前后台页面跳转及参数传递

标签:app   page   service   return   string   res   ice   single   页面跳转   

原文地址:http://www.cnblogs.com/lgf428/p/6097390.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!