2016-10-26 76 views
-1

這是我的代碼。我嘗試了很多。但無法找到任何運氣。我希望ajax響應應該以表格的形式出現。如何將表添加到ajax響應

if (URI.endsWith("updateEmpById.action")) { 
       Employee emp; 
       try { 
        emp = new EmployeeDaoImpl().findEmployee(Integer 
          .parseInt(request.getParameter("val"))); 

        out.print("<div>"); 
        out.print("<form action='UpdateEmployee.action'><p> ID:<input type='number' name='id' value='" 
          + emp.getId() + "' readonly></p>"); 
        out.print("<p> NAME:<input type='text' name='name' value='" 
          + emp.getName() + "'></p>"); 
        out.print("<p> DESIGNATION:<input type='text' name='desig' value='" 
          + emp.getDesignation() + "'></p>"); 
        out.print("<p> SALARY:<input type='text' name='salary' value='" 
          + emp.getSalary() + "'></p>"); 
        out.print("<p><input type='button' value='Update' class = 'button'></p></form>"); 
        out.print("</div>"); 
       } catch (NumberFormatException e) { 
        e.printStackTrace(); 
       } catch (SQLException e) { 
        e.printStackTrace(); 
       } 
      } 

謝謝。

+1

如果要輸出爲Table,請稍微學習一下HTML。 https://www.tutorialspoint.com/html/html_tables.htm –

回答

0

你只是對象「EMP」轉發給您的視圖頁面(即JSP頁面),並可以打印細節表格形式

+1

怎麼樣?不要收到你。 –

+0

json.addData(「emp」,emp); – geetha

+0

json.addData(「emp」,emp);我只是將「carList」轉發到我的「jsp頁面」 – geetha

0
ArrayList<ArrayList<String>> carList = new ArrayList<ArrayList<String>>(); 
    List<CarInfo> carById = carInfoService.getCarDetail(carId); 

     if (carById != null) { 
      for (CarInfo carId : carById) { 
       ArrayList<String> carDetail = new ArrayList<String>(); 
       carDetail.add(carId.getFirstName()); 
       carDetail.add(carId.getLastName()); 
       carList.add(carDetail); 
      } 
      json.putStatus(1); 
      json.addData("carList", carList); 
     } 

這是我的Java頁面。我只是將「carList」轉發到我的「jsp頁面」

相關問題