A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区
传智教育官网黑马程序员官网
只需一步,快速开始
我是楠楠
黑马粉丝团
黑马币:5364
帖子:67337
精华:0
© 我是楠楠 黑马粉丝团 / 2020-5-26 15:05 / 1373 人查看 / 1 人回复 / 0 人收藏 转载请遵从CC协议 禁止商业使用本文
1.png (26.12 KB, 下载次数: 9)
下载附件
2020-5-26 15:02 上传
/** * 根据 ID 获取实体 * @param id * @return */ public Goods findOne(Long id);
@Override public Goods findOne(Long id) { Goods goods=new Goods(); TbGoods tbGoods = goodsMapper.selectByPrimaryKey(id); goods.setGoods(tbGoods); TbGoodsDesc tbGoodsDesc = goodsDescMapper.selectByPrimaryKey(id); goods.setGoodsDesc(tbGoodsDesc); return goods; }
/** * 获取实体 * @param id * @return */ @RequestMapping("/findOne") public Goods findOne(Long id){ return goodsService.findOne(id); }
//商品控制层(商家后台) app.controller('goodsController',function($scope,$controller,$location,goodsService ,uploadService,item_catService,type_templateService){ ......
//查询实体 $scope.findOne=function(){ var id= $location.search()['id'];//获取参数值 if(id==null){ return ; } goodsService.findOne(id).success( function(response){ $scope.entity= response; } ); }
<body class="hold-transition skin-red sidebar-mini" ng-app="pinyougou" ng-controller="goodsController" ng-init="selectItemCat1List();findOne()">
1.png (27.33 KB, 下载次数: 7)
2020-5-26 15:04 上传