如何在 Apache Velocity 模板引擎中组合变量?

How to combile variables in Apache Velocity template engine?

我定义了 2 个变量,baseURL 和 imageName。

而实际图像url是baseURL和ImageName的组合。

例如,baseURL 为“http://www.abc.test”,imageName 为"Hello.jpg"。

如何通过 baseURL 和 imageName 变量显示“http://www.abc.test/Hello.jpg”?

随便写

$baseURL/$imageName

在您的模板中,例如:

<img src="$baseURL/$imageName"/>

如果您想将这两个变量连接到另一个变量中,请执行以下操作:

#set($url = "$baseURL/$imageName")