我有一个例子
#set($organizationId = $layout.getGroup().getOrganizationId())
我可以将其重写为
#set($organizationId = $layout.group.organizationId)
?
会完全一样吗?
我有一个例子
#set($organizationId = $layout.getGroup().getOrganizationId())
我可以将其重写为
#set($organizationId = $layout.group.organizationId)
?
会完全一样吗?
是的。请参阅此处:Velocity 用户指南 - 属性查找规则,其中指出:
例如,$customer.address
,序列是
getaddress()
getAddress()
get("address")
isAddress()
更准确地说,Velocity 用户指南 - 案例替换:
$data.getRequest().getServerName()
## is the same as
$data.Request.ServerName