F**e 发帖数: 593 | 1 好多年没碰JSP了,不懂现在这些是怎么work的。
在一个jsp file里有这样一段code:
${object.name}
这个$里面的是什么东西啊,这个算是struts吗?JSTL?一点概念都没有。如果我要对这
个${object.name}变量做些处理怎么整?比如说我想做对这个变量一些regex和其他一
些处理。
先谢了。 | g*****g 发帖数: 34805 | 2 看似jstl,处理应该在后端java代码里搞。
【在 F**e 的大作中提到】 : 好多年没碰JSP了,不懂现在这些是怎么work的。 : 在一个jsp file里有这样一段code: : ${object.name} : 这个$里面的是什么东西啊,这个算是struts吗?JSTL?一点概念都没有。如果我要对这 : 个${object.name}变量做些处理怎么整?比如说我想做对这个变量一些regex和其他一 : 些处理。 : 先谢了。
| g**********y 发帖数: 14569 | 3 ${object} refer to a variable you defined in page or session level, .name means call the method getName() of that object.
It's called expression language, check out
http://java.sun.com/j2ee/1.4/docs/tutorial/doc/JSPIntro7.html
To be frank, it is horrible horrible "language". The only purpose is to make the JSP page look "neat" and easy for designer to understand. But under the hood, it is total mess. If you read the compiled JSP code, you will know what I mean.
Any processing, like regex, you'd
【在 F**e 的大作中提到】 : 好多年没碰JSP了,不懂现在这些是怎么work的。 : 在一个jsp file里有这样一段code: : ${object.name} : 这个$里面的是什么东西啊,这个算是struts吗?JSTL?一点概念都没有。如果我要对这 : 个${object.name}变量做些处理怎么整?比如说我想做对这个变量一些regex和其他一 : 些处理。 : 先谢了。
|
|