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

点击商品图片显示详细商品页面

时间:2016-07-21 23:25:15      阅读:249      评论:0      收藏:0      [点我收藏+]

标签:

1.点击商品链接:
  * 传递商品id.


2.编写Action:
  * 编写Action类,继承ActionSupport实现模型驱动接口.
  * 编写一个执行的方法.

public class ProductAction extends ActionSupport implements ModelDriven<Product> {
    //用于接收数据的模型驱动
    private Product product=new Product();
    public Product getModel() {
        return product;
    }

        //根据商品的ID进行查询商品
    public String findByPid(){
        //调用Service的方法完成查询
        product=productService.findByPid(product.getPid());
        return "findByPid";
    }
}

3.配置Action:
  * 在applicationContext.xml中配置Action
  * 在struts.xml中配置Action


4.在页面上显示相应数据 :
  * 页面转向
  * 修改页面
  * 显示数据

点击商品图片显示详细商品页面

标签:

原文地址:http://www.cnblogs.com/guoxianda/p/5693315.html

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