首页 > 技术文章 > 笔记1

zhan1995 2018-06-12 15:56 原文

/**
     * 根据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);
   }
});

推荐阅读