老师这个需要怎么判断

老师这个需要怎么判断

<%@page import="java.util.List"%>
<%@page import="com.imooc.model.Food"%>
<%@page import="com.imooc.model.FoodDaoImpl"%>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE html>
<html>
<head>
<base href="<%=basePath%>">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>菜品信息展示</title>
<style type="text/css">
</style>
</head>
<body>
<%
List<Food> food=(List<Food>)application.getAttribute("food");
List<Food> list=(List<Food>)application.getAttribute("list");
if(food==null){
application.setAttribute("foodList", list);
}else{
application.setAttribute("foodList", food);
}
%>
<center>
<h1>菜品查询</h1>
<font><h3 style="color:red">${msg }</h3></font>
<table border="1px" cellspacing="0px" cellpadding="0px" width="800px">
<thead>
<tr>
<th>菜品ID</th>
<th>菜名</th>
<th>口味</th>
<th>菜品图片</th>
<th>价格</th>
<th>菜品描述</th>
</tr>
</thead>
<tbody>
<c:forEach items="${applicationScope.foodList }" var="food">
<tr>
<td>${food.fid }</td>
<td>${food.fname }</td>
<td>${food.lavor }</td>
<td><img src="/variety_of_dishes/upload/${food.imgaddress }"></td>
<td>${food.peice }</td>
<td>${food.describe }</td>
</tr>
</c:forEach>
</tbody>
</table>
</center>
</body>
</html>


正在回答 回答被采纳积分+1

登陆购买课程后可参与讨论,去登陆

1回答
好帮手慕阿满 2019-03-11 19:14:15

同学你好,这里建议不需要判断。通过名称查询和查询所有菜品时,查询到的菜品信息存入到request域中时,使用相同的名字,在显示菜品信息时,不需要判断,直接显示查询到的结果即可。

如果我的回答解决了你的疑惑,请采纳。祝:学习愉快~

  • 提问者 qq_空_239 #1
    已解决,我直接判断是否有foodName,如果有则返回food对象的list,没有则返回所有集合的list
    2019-03-11 19:27:30
问题已解决,确定采纳
还有疑问,暂不采纳

恭喜解决一个难题,获得1积分~

来为老师/同学的回答评分吧

0 星
从网页搭建入门Java Web2018版
  • 参与学习           人
  • 提交作业       1088    份
  • 解答问题       10205    个

如果你有Java语言基础,又想以后从事Java Web开发,那么本路径是你的不二选择!本路径从网页搭建开始入手,通过大量案例来学习Java Web基础。定能助你完成Java Web小白的蜕变!

了解课程
请稍等 ...
意见反馈 帮助中心 APP下载
官方微信

在线咨询

领取优惠

免费试听

领取大纲

扫描二维码,添加
你的专属老师