实习知识整理9: 点击直接购买按钮后,跳转到确认订单页面

1. 为按钮绑定事件


     $("#buyButton").click(function () {
           if ('' !== loginUser) {
               // 如何将商品信息传递到后台,后台能够将内容在新的订单页面显示
               $("#buyItemForm").submit()  // 在用户已登录的情况下才能提交表单
           } else {
               window.location.href = "http://localhost:8082/project/login"  // 未登录跳转到登录界面
           }
     });

上述点击按钮后就是将表单中的信息传递到后台,然后后台返回到新页面中

实习知识整理9: 点击直接购买按钮后,跳转到确认订单页面_第1张图片

 

2. 后端 接收到信息并将信息返回到新的页面中

@Controller
@RequestMapping("/order")
public class OrderController {

    @RequestMapping("/toConfirmOrder")
    public ModelAndView toConfirmOrder(ModelAndView mav, HttpSession session, Item item, Integer buyCount) throws Exception{
        // 需要将对应的信息放入到confirmOrder 页面中
        mav.addObject("item", item);
        mav.addObject("buyCount", buyCount);
        mav.setViewName("confirmOrder");
        return mav;
}

 实习知识整理9: 点击直接购买按钮后,跳转到确认订单页面_第2张图片

 

 3. 确认订单页面使用数据

实习知识整理9: 点击直接购买按钮后,跳转到确认订单页面_第3张图片

 

你可能感兴趣的:(实习课项目知识整理,java,javascript)