链接方式

来源:互联网 发布:侠客风云传内存优化 编辑:程序博客网 时间:2024/05/16 08:30

<<a href="${contextPath}/customer/contactsModify.html?modifyId='+contacts_id+'"

 

location.href='${contextPath}/customer/selectedContactsdelete/' +selectedid + '.html';


location.href="${contextPath}/systems/srm/purchase/iq/chooseQuote.html?quoteNo=" + quoteNo;

对应  @RequestMapping(value="/chooseQuote.html")
    public String getTenderBidGoos(@RequestParam("quoteNo") String quoteNo) {


location.href='${contextPath}/systems/srm/purchase/tender/delete/' + no + '.html';

对应    @RequestMapping(value = "/delete/{tenderNo}.html")
    public ModelAndView deleteTender(@PathVariable("tenderNo") String tenderNo) {



@RequestMapping(value = "/create.html", method = RequestMethod.POST)
    //会自动检测传递过来的参数格式自己对应bean
    public String doCreateTender(@Valid @ModelAttribute("tenderDetail")TenderDetailCreate tenderDetailCreate,
            @RequestParam("inputFile") MultipartFile inputFile,
            HttpServletRequest request,
            @RequestParam(value = "supplierNos", required = false) String[] supplierNos) {




0 0
原创粉丝点击