zoukankan      html  css  js  c++  java
  • 笔记1

    /**
         * 根据id 查找活动对象
         * @throws IOException 
         * */
        public void getFishObj() throws IOException{
            String id = request.getParameter("id");
            Fishing fishing = (Fishing) fishService.getObjectById(id+"");
            
            JsonConfig jsonConfig = new JsonConfig();
            jsonConfig.registerJsonValueProcessor(Date.class, new JSONFormatDate("yyyy-MM-dd HH:mm:ss"));
            JSONObject jo = JSONObject.fromObject(fishing,jsonConfig);// 格式化result
            response.setContentType("text/html;charset=utf-8");
            PrintWriter out = response.getWriter();
            out.println(jo.toString());
            out.flush();
            out.close();
        }
    $.ajax({
       type: "POST", dataType: "JSON",
       url: "${pageContext.request.contextPath}/back/fish/getFishObj.action",
       data: {id:rows[0].fishId},
       success: function(data){
           $("#fishId").val(data.fishId);
           $("#fishName").val(data.fishName);
           $("#shopName").val(data.shopName);
           $("#factoryName").val(data.factoryName);
           $("#address").val(data.address);
       }
    });
  • 相关阅读:
    复习HTML/CSS 3
    复习HTML/CSS2
    复习HTML/CSS1
    HTML/CSS8
    HTML/CSS7
    HTML/CSS6
    9.5Html
    9.4Html
    面向对象
    作用域以及类、实例
  • 原文地址:https://www.cnblogs.com/zhan1995/p/9173463.html
Copyright © 2011-2022 走看看