1

what is the meaning of the $ sign in the following code:

<h1 class="title">Welcome ${consumer.first_name} </h1>
4

2 回答 2

3

它是一个表达式(将其视为访问 Java 对象值的一种方式)。

${consumer.first_name} 

相当于

<%
    out.print(consumer.getFirst_Name());
%>

在这里,consumer将是某个范围(请求、会话等)中的属性

阅读表达语言

于 2013-04-26T10:47:15.087 回答
0

这是访问变量的方法之一。看看这个链接

于 2013-04-26T10:47:24.127 回答