gpt4 book ai didi

java - 将 jsp 方法拆分为多个 scriplet,以在其间包含 html 代码

转载 作者:行者123 更新时间:2023-12-01 23:37:56 26 4
gpt4 key购买 nike

我正在 JSP 中编写一个转储表行的方法:

<%!  
void dumpRows(List<MyClass> obList){
int a = 10;
for(int i = 0; i<100; i++){
%>
//lots of HTML code which uses the variables from the dumpRows method
<td> <%=a*i%> </td>
<%
}//for loop ends
}//method ends
%>

但它出错了。 JSP 语法有问题。请帮助我如何实现这一目标

最佳答案

<%!  
void dumpRows(List<MyClass> obList){
int a = 10;
for(int i = 0; i<100; i++){
%>
//lots of HTML code which uses the variables from the dumpRows method
<td> <%=a*i%> </td> //here problem
<%
}//for loop ends
}//method ends
%>

这样写可以打印<%=a*i%>

关于java - 将 jsp 方法拆分为多个 scriplet,以在其间包含 html 代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18378643/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com