首页 > 其他 > 详细

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

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

<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;
}

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

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!