forEach标签无效是怎么回事?

正在回答

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

4回答

你好,你把taglib中的uri换下:<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>

如果还有问题,可以再次提问。祝学习愉快~

  • 荒小北158 提问者 #1
    非常感谢!
    2018-02-12 12:18:35
  • 老师这里的uri怎么看着这么别扭,后彼岸不是跟了一个url,吗
    2018-04-23 10:44:03
  • 老师我下面的代码哪里错了。服务器报错。
    2018-04-23 11:37:29
好帮手慕珊 2018-04-23 14:46:57

@liqihang,你的代码有两个问题

1、foreach改为forEach,注意大小写

2、int是基本数据类型关键字,改个名字,改为num

http://img1.sycdn.imooc.com//climg/5add812e0001689505750213.jpg

祝学习愉快!

liqihang 2018-04-23 11:37:02
liqihang 2018-04-23 11:36:03

package com.imooc.servlet;

import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

/**
 * Servlet implementation class Jstl
 */
@WebServlet("/Jstl")
public class Jstl extends HttpServlet {
 private static final long serialVersionUID = 1L;
      
  
 protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
      int[] a=new int[100];
      for(int i=0,j=100;i<100;i++){
       a[i]=j;
       j++;
      }
      request.setAttribute("array", a);
      request.getRequestDispatcher("/JSETjsp.jsp").forward(request, response);
 }

 protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
  // TODO Auto-generated method stub
  doGet(request, response);
 }

}

<%@ page language="java" contentType="text/html; charset=utf-8"
    pageEncoding="utf-8"%>
  <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>JSTL练习</title>
</head>
<body>
<c:out value="既能被4整除又能被5整除的数据有:"></c:out>
<c:foreach items="${array}" var="int">
<c:if test="${int%4==0&&int%5==0}">
 <c:out value="${int}"></c:out>
</c:if>
</c:foreach>
</body>
</html>


问题已解决,确定采纳
还有疑问,暂不采纳

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

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

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

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

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

在线咨询

领取优惠

免费试听

领取大纲

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